Forum Discussion
IF Function
Hello everyone,
i need a Measure for the following Example:
- The "Dunning Level" Column needs to be filled with the measure
- If "Dunning Level 1" >= Todays Date --> "Dunning Level" should be filled with "Level 1"
- If "Dunning Level 2" >= Todays Date --> "Dunning Level" should be filled with "Level 2"
- If "Dunning Level 3" >= Todays Date --> "Dunning Level" should be filled with "Level 3"
- If "Dunning Level 4" >= Todays Date --> "Dunning Level" should be filled with "Level 4"
I already created it in Excel, but I dont know how to do it with a measure in Power Bi (its german language):
Many thanks for your help!
Kind regards,
Florian
I solved the problem with the following code:
Dunning Level =SWITCH(TRUE(),TODAY() >= [Dunning Level 4], "Level 4",TODAY() >= [Dunning Level 3], "Level 3",TODAY() >= [Dunning Level 2], "Level 2",TODAY() >= [Dunning Level 1], "Level 1","N/A")
5 Replies
- Flo95Frequent Visitor
I solved the problem with the following code:
Dunning Level =SWITCH(TRUE(),TODAY() >= [Dunning Level 4], "Level 4",TODAY() >= [Dunning Level 3], "Level 3",TODAY() >= [Dunning Level 2], "Level 2",TODAY() >= [Dunning Level 1], "Level 1","N/A")