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 g...
- 4 years ago
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,
AilleryO
4 years agoMemorable 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,