Forum Discussion
BM_
4 years agoFrequent Visitor
M code conditional and blank value
Hi, I have the following DAX I would like in M code.
Einddatum = IF(AND([FTXCDBSTATUSPERSON] = "Oud", [Mutatietype]="Einddatum"), [MutatieDatum], BLANK())
How can I do this? Also else null gives me null values instead of blank values.
Hi,
In M should be like this :
if [FTXCDBSTATUSPERSON]="Oud" and [Mutatietype]="Einddatum" then [Mutatietype] else nullshould do the trick.
Becarefull in M Code everything is case sensitive.
Have a nice day,
1 Reply
- AilleryOMemorable Member
Hi,
In M should be like this :
if [FTXCDBSTATUSPERSON]="Oud" and [Mutatietype]="Einddatum" then [Mutatietype] else nullshould do the trick.
Becarefull in M Code everything is case sensitive.
Have a nice day,