Forum Discussion
SteenSoernesen
6 months agoFrequent Visitor
If formula
I'm trying to make a dax if formula where there is another if formula mixed in. IF([Aflyst stop]="", "Kørt",IF([Aflyst stop] = [Antal stop], "aflyst", "Delaflyst")) My main problem is that [...
- 6 months ago
Hello SteenSoernesen
In Power BI, a blank is not an empty string.Isblank() should help you to solve this issue:
Status =IF(
ISBLANK([Aflyst stop]),"Kørt",
IF([Aflyst stop] = [Antal stop], "Aflyst", "Delaflyst"))
Cookistador
Super User
6 months agoHello SteenSoernesen
In Power BI, a blank is not an empty string.
Isblank() should help you to solve this issue:
Status =
IF(
ISBLANK([Aflyst stop]),
"Kørt",
IF([Aflyst stop] = [Antal stop], "Aflyst", "Delaflyst")
)
- SteenSoernesen6 months agoFrequent Visitor
Thank you.