Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Only background colour when data is defferent(<>) in 2 colums of a table, not when one of it is null. how i can give it in background colour ??
try with
if(not IsNull(Column(3)) and not IsNull(Column(2)) and Column(2)<>Column(3), green())
you can replace column(n) with the expression of the column
try with
if(not IsNull(Column(3)) and not IsNull(Column(2)) and Column(2)<>Column(3), green())
you can replace column(n) with the expression of the column