Hi Satya,
If Posting date is less than and equal to Input date is true and clearing posting date is greater than input date..then amount needs to display Else If Posting date is less than and equal to Input date is true and clearing posting date is lesser than input date..then amount field should be blank.
So I have created 2 formula variables with syntax as below (with above logic). Now I wanted to understand how I can add ELSE between these 2 logic & also if the below syntax are correct :
Logic 1 - If Posting date is less than and equal to Input date is true and clearing posting date is greater than input date..then amount needs to display
((posting date formula variable <= Input Date formula variable) AND (clearing date formula variable > 0))* Amount
Logic 2 - - If Posting date is less than and equal to Input date is true and clearing posting date is lesser than input date..then amount should be blank
((posting date formula variable <= Input Date formula variable) AND (clearing date formula variable > 0))* 0
Now when I am adding + between these 2 formula variables, I am getting error. Please suggest