Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hii,
I want to write expressions clause
=Count({<SD_WorkingDay={'1'},SD_Ay=num(Month(vbugun))>},GVG_UID)
=Count(if (SD_Ay=(Month(vbugun)),GVG_UID)) working
=Count({<SD_WorkingDay={'1'}>}GVG_UID) working
I wonder why it does not work we combined two sentences
=Count({<SD_Ay=num(Month(vbugun))>},GVG_UID) not working
Thank You
Try this
Count({$<SD_Ay={"$(=Month(vbugun))"},SD_WorkingDay={1}>}GVG_UID)
Hi iker,
This one should work
=Count({<SD_WorkingDay={'1'},SD_Ay= {$(=num(Month(vbugun)))}>},GVG_UID)
=Count({<SD_Ay= {$(=num(Month(vbugun))}>},GVG_UID)
Regards,
Sokkorn
Try this
Count({$<SD_Ay={"$(=Month(vbugun))"},SD_WorkingDay={1}>}GVG_UID)
This is working
Thank You er.mohit