Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I Have this condition in Excel: =IF(Z6="NA",0,3), How do I Translate this to DAX Language?
Solved! Go to Solution.
Hi @ivansitoiv ,
For creating a column you could try:-
column = IF('table'[column_which_represent_z6]="NA",0,3)
and for measure it could be like this
Measure = IF(max('table'[column_which_represent_z6])="NA",0,3)
BR,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @ivansitoiv ,
For creating a column you could try:-
column = IF('table'[column_which_represent_z6]="NA",0,3)
and for measure it could be like this
Measure = IF(max('table'[column_which_represent_z6])="NA",0,3)
BR,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi,
I assume you want to create a calculated column.
Please check the below DAX formula whether it suits your requirement.
Excel CC =
IF ( 'table name'[Z6 column] = "NA", 0, 3 )
The formula is to create a measure or calculated column? because im receiving this error: DAX comparison do not support comparing values of type integer with values of type text
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 9 | |
| 9 | |
| 8 | |
| 6 | |
| 6 |
| User | Count |
|---|---|
| 20 | |
| 20 | |
| 20 | |
| 14 | |
| 14 |