Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I need help for this Excel Formula to be converted to DAX
1. =IF(ColumnA<>"","Y","N")
2. =IF(OR(ColumnD="00Test 00TestLast",ColumnD="00test newcon"),"Y","N")
Thank you.
Solved! Go to Solution.
Hello! @Dangar332
the formula works in a "new column' not in a 'measure'.
It is solved already.
Thanks
hi, @juhoneyighot
try below code
measure1 =
if('yourtablename'[columnname that you compare(columnA)]<>"","y","n")
measure 2 =
if('yourtablename'[columnname where you compare(columnD)]="00Test 00TestLast" ||
'yourtablename'[columnname where you compare(columnD)]="00test newcon","y","n")
Hello! @Dangar332
the formula works in a "new column' not in a 'measure'.
It is solved already.
Thanks
Hi, @juhoneyighot
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. and don't forget to give kudos.
Hello! This is the error when I'm trying to enter the formula
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
11 | |
9 | |
6 |