GroupHeader Condition with 2 fields int+string
Hello all,
where ist the right syntax for combine two fields integer and string as contition in GroupHeader
My Field values:
<StartsStartkarten."PASS_ID"> = 2614
<StartsStartkarten."VEREINSNR"> '416020'
this contition IntToStr(<StartsStartkarten."PASS_ID">)+'.'+<StartsStartkarten."VEREINSNR">
creates not a string like 2614.416020 rather than 2614+416020=418634 and the condition works not right.
In a memoview work this but not as contition in GroupHeader
[IntToStr(<StartsStartkarten."PASS_ID">)].[<StartsStartkarten."VEREINSNR">]
thanks a lot,
Kostas
where ist the right syntax for combine two fields integer and string as contition in GroupHeader
My Field values:
<StartsStartkarten."PASS_ID"> = 2614
<StartsStartkarten."VEREINSNR"> '416020'
this contition IntToStr(<StartsStartkarten."PASS_ID">)+'.'+<StartsStartkarten."VEREINSNR">
creates not a string like 2614.416020 rather than 2614+416020=418634 and the condition works not right.
In a memoview work this but not as contition in GroupHeader
[IntToStr(<StartsStartkarten."PASS_ID">)].[<StartsStartkarten."VEREINSNR">]
thanks a lot,
Kostas
Comments
VarToStr(<StartsStartkarten."PASS_ID">)+'.'+VarToStr(<StartsStartkarten."VEREINSNR">)
thanks this works fine.
regards
Kostas