Forum Discussion
JamesMurg
Helper I
3 years agoChange True/False to certain text
Hi All
Is there a way I can change true and false so that it returns late or on time?
Thanks in advance!
James
- Okay so select New column instead of measure and use the below DAX:Column = if(Submissions[Submit Date]>Submissions[Due Date],"On Time","Late")If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
3 Replies
- DOLEARY85
Resident Rockstar
Hi,
you could use an if statement in a calculated column if(Current measure formula,"On Time", "Late")
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
- JamesMurg
Helper I
Sorry, I am new to PowerBi, what measure would I write exactly please?
- DOLEARY85
Resident Rockstar
Okay so select New column instead of measure and use the below DAX:Column = if(Submissions[Submit Date]>Submissions[Due Date],"On Time","Late")If I answered your question, please mark my post as solution, Appreciate your Kudos 👍