In my report extension, I would like to turn a list that I have calculated into a column.
So ['a','b','c',] becomes a column labelled "Alphabet" with data:
'a'
'b'
'c'
Is this possible?
In my report extension, I would like to turn a list that I have calculated into a column.
So ['a','b','c',] becomes a column labelled "Alphabet" with data:
'a'
'b'
'c'
Is this possible?
Could you do it as an array instead? You can then have a column per array value.
var
Alphabet: array of text;
OnPreReport()
Begin
Alphabet[1] := ‘a’;
…etc.
End;
Column(Alphabet1; Alphabet[1]){}
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 290,537 Super User 2024 Season 2
Martin Dráb 228,520 Most Valuable Professional
nmaenpaa 101,148