Hi all,
Please help me I have this date column and I want to make a measure;
IF [date] < now THEN urgent ELSE not urgent
I tried to make a new measure with:
IF = NOW()>FIRSTNONBLANK(Sheet1[Date],Sheet1[Date]),"urgent","not urgent"))
But it still returns The syntax for ",' is incorrect
Pls help, thanks!
Solved! Go to Solution.
The syntax of you measure as mentioned in this post is completely wrong. So you may have misspelled that in the post.
Something like this would pass the syntax test. But I'm not sure if it gives you the expected result.
Measure Name = IF ( NOW () > FIRSTNONBLANK ( Sheet1[Date], Sheet1[Date] ), "urgent", "not urgent" )
The syntax of you measure as mentioned in this post is completely wrong. So you may have misspelled that in the post.
Something like this would pass the syntax test. But I'm not sure if it gives you the expected result.
Measure Name = IF ( NOW () > FIRSTNONBLANK ( Sheet1[Date], Sheet1[Date] ), "urgent", "not urgent" )
Ah yes! Sorry my bad
This works perfectly, thank you!
User | Count |
---|---|
106 | |
82 | |
72 | |
48 | |
48 |
User | Count |
---|---|
157 | |
89 | |
81 | |
69 | |
67 |