This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
How to write the formula in DAX
Sum(Case When (columnname) < 10 Then 1 Else 0 End) Over (Partition By ColumnName)
Solved! Go to Solution.
Hi @kalavala,
You can refer to below formual about the if statement:
1. Dax.
Calculate column:
Result =IF([columnname]<10,1,0)
2. Power Query.
if [columnname]<10 then 1 else 0
Full query:
#"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each if [ID] <10 then 1 else 0)
Regards,
Xiaoxin Sheng
Hi @kalavala,
You can refer to below formual about the if statement:
1. Dax.
Calculate column:
Result =IF([columnname]<10,1,0)
2. Power Query.
if [columnname]<10 then 1 else 0
Full query:
#"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each if [ID] <10 then 1 else 0)
Regards,
Xiaoxin Sheng
Hopefully I am answering your question. I think you are looking for a column not a measure.
In the Data section select the appropriate table, and add a column with an IF statement similar to:
Tst_LT10 = IF(columnname<10, 1,0)
Now add a Table to a Report. Add the field you want to partition, the Tst_LT10 field you built, and some other extra field.
in the visualizations Section use the drop button next to Tst_LT10, and select Sum. Similarly use the Drop button on the extra field and select count. You should now have the count of rows that are less than 10 vs the count of rows in general.
If this is not what you are looking for please give a bit more detail.
Edit (Spell check)
I am writing the if condition in queryeditior facing the below error can please help
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 27 | |
| 25 | |
| 25 | |
| 21 | |
| 14 |
| User | Count |
|---|---|
| 50 | |
| 44 | |
| 20 | |
| 18 | |
| 18 |