Hi
In Report Module how can we write a simple if expression in Property Inspector when using Use Dynamic data key?
For example following expression doesn’t work and i want simple if statement:
if(key1 = 1, True, False)
Hi
In Report Module how can we write a simple if expression in Property Inspector when using Use Dynamic data key?
For example following expression doesn’t work and i want simple if statement:
if(key1 = 1, True, False)
I would suggest a statement like this for simplicity:
key1 == 1
Or if you want to manually choose the possible outputs, I would suggest the following:
key1 == 1 ? true : false
If you have more questions about using Dynamic data keys in the Report Module, try the following video: