Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi All
Please can anyone help me rewrite this below query as a column. want to see Late or On time as a row.
Solved! Go to Solution.
Hi, @Anonymous ,
Try it.
_Question? =
IF (
'Questionaire & App'[QuestionnaireStatusID] < 6
&& 'Questionaire & App'[QuestionnaireDeadline] > TODAY (),
"Late",
"On Time"
)
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous ,
Try it.
_Question? =
IF (
'Questionaire & App'[QuestionnaireStatusID] < 6
&& 'Questionaire & App'[QuestionnaireDeadline] > TODAY (),
"Late",
"On Time"
)
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous, format and if are wrongly placed. Also you are comparing text with int