Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi!
I'm trying to define a cell to NULL in an IF sentence:
Column = IF(AND('public _view_powerbi__alm_x_periodo'[AFI]>='public _view_powerbi__alm_x_periodo'[PFI];'public _view_powerbi__alm_x_periodo'[AFI]<='public _view_powerbi__alm_x_periodo'[PFF]);'public _view_powerbi__alm_x_periodo'[id_alumno$];NULL)
The system replies : Operator or expression 'NULL' is not admited in this context.
If I set the value of cell to 0 (for exemple), a problem will appear when I will do a DISTINCTCOUNT for this column counting the 0 and the final information is wrong.
How can I do for or set cell to NULL or do not count the 0 value in a DISTINCTCOUNT?
I'm directly connected to the Data Base (Postgresql).
Thank you very much for your help.
Edited: I've created a new column where Vacio = and I modified the original sentence to
column = IF(AND('public _view_powerbi__alm_x_periodo'[AFI]>='public _view_powerbi__alm_x_periodo'[PFI];'public _view_powerbi__alm_x_periodo'[AFI]<='public _view_powerbi__alm_x_periodo'[PFF]);'public _view_powerbi__alm_x_periodo'[id_alumno$];'public _view_powerbi__alm_x_periodo'[Vacio])
but the problem with DISTINCTCOUNT stills the same... It counts the empty cells...
Solved! Go to Solution.
calculate(distinctcount((your column name here) ) , (your column name here) <> 0)
I'm assuming the column has only numerical values. If not then replace the 0 with '' or ""
Hi Gaël,
what works well for me to count distinctvalues is to create a measure with this formula (not my find originally, but I don't know the source anymore):
Calculate(DistinctCount(tablename[columnname]);Filter(tablename;Not(isblank(tablename[columnname]))))
I'm quite new to Power BI, but I think you can assign a Null value by using just lowercase letters (null rather than Null or NULL)
cheers,
Niels
That only applies to the query editor. There are two languages in Power BI. In a query you can return null by typing null in lowercase. In a DAX formula use BLANK().
This is the only answer to the question that was asked and should be the accepted response. The others may have solved OP's issue, but they did not answer the question.
IF ( x = 7 , 7 , BLANK() )
Thank you!!! DAX is really messing with me.
Short version of how I'm transposing my DW data with your input.
ex:
IF( 'value_label'="Federal Tax(s)", value('value_amount'), blank() )
I know this is old, but I just tested to remove the comma and values for the "if false" portion of the formula.
So instead of typing ", blank() )", just clost the expression BEFORE the value if false with the close parentheses ")".
calculate(distinctcount((your column name here) ) , (your column name here) <> 0)
I'm assuming the column has only numerical values. If not then replace the 0 with '' or ""
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 68 | |
| 67 | |
| 34 | |
| 31 | |
| 30 |