on 2024 Feb 17 2:16 AM
Hi People Analytics Story Report Experts,
We are currently encountering an issue with calculating the counts for active Global Assignment (GA) employees in the Story report. The problem arises particularly when dealing with the Current Date field in the calculation process. Could you please advise on how we can rectify this error
Code:
IF(ISNULL([Employment#Global Assignment Details#Actual End Date] ) ,"Active" ,IF([Employment#Global Assignment Details#Actual End Date] >=CURRENTDATE(),"Active" ,"Terminated" ) )
Request clarification before answering.
The IFNULL is not working, you'll keep getting an error. There is a blog post here (I forgot the link) where a workaround was suggested. Instead of using IFNULL, do a CONCAT.
CONCAT ([Employment#Global Assignment Details#Actual End Date], "!")
Any cell that returns only "!" is null/blank. You might need to convert the date string to a text though because the second parameter ("!") is read as a text and the first is read as a date.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
8 | |
7 | |
6 | |
5 | |
3 | |
3 | |
2 | |
2 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.