Does any one know the expression for displaying a table if the value of a boolean is set to true and if it’s set to false (within epicor) then do not display the field.
The field is EUOrder_c on OrderHed
I’ve currently got: =IIF(Isnothing(Fields!EUOrder_c.Value),True,False) I’m using the display options of the table
Hopefully unrelated but when working with an RDL that has multiple datasets, if you move a field from a different dataset than the one that the RDL considers to be the Primary, it will consider that you want that dataset to be the Primary and it makes it so. Then, when you try to use fields from the “primary” dataset in Expressions, you suddenly start getting a similar type of error.
Just make sure you have not done that.
The trick is to just place a field onto the design from the true Primary dataset, save and remove.
Everything is good in terms of the table and fields but this expression is causing some issues? All I want it to do is show the table if EUOrder_c = True and Hide the table if EUOrder_c = False.