Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have created an employee report which has fields present and leave. I want the pivot to show "yes" or "no" for the condition if the employee is present or on leave. I am not getting how to show text on the basis of condition. please help..
hi, I think this will help you
If present and leave are different fields, you might try something like:
If(present='Y', 'YES', 'NO')
Assuming your present field has flag value like Y/N
hi, if you can attach an sample application it s better
hi, I think this will help you
Where do you want to show the Text?
if(present = 1,'YES','NO')
Thanks all