Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
What is the meaning of the formula?
=if(isnull([Job])=-1, 'Manager',[Job]) & ' Total Salary ($' & Chr(39) &'000)'
If is true that the field job is null then show the text 'Manager' otherwise Show The value of the field Job followed by the text ' Total Salary ($'000)
hope this helps
If is true that the field job is null then show the text 'Manager' otherwise Show The value of the field Job followed by the text ' Total Salary ($'000)
hope this helps
Hi, isnull() returns -1 when it's true, so:
if(isnull([Job])=-1, 'Manager',[Job]): Returns the Job or 'Manager' if Job is not set
& ' Total Salary ($' & Chr(39) &'000)': This part is weird, it will return a fixed text: " Total Salary ($'000)"