The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
I am trying to achieve a "countif" column in a table, that will count the occurrences of rows ID in the whole table.
I tried these approaches:
I am wondering why CALCULATE is not working for this scenario. Could anybody explain, please?
Warm regards
Jakub
Solved! Go to Solution.
EARLIEST should be ditched. It's not recommended to use this function anymore. Use variables instead. CALCULATE does context transition (puts filters on all the rows) so it can't work here without extra directives. But at any rate, you should not use CALCULATE in calculated columns, especially in fact tables. Context transition is costly and will put the engine to a halt.
@jdusek92 @Anonymous is generally correct. The Excel equivalent functions can be found here, including COUNTIF:
Excel to DAX Translation - Microsoft Power BI Community
EARLIEST should be ditched. It's not recommended to use this function anymore. Use variables instead. CALCULATE does context transition (puts filters on all the rows) so it can't work here without extra directives. But at any rate, you should not use CALCULATE in calculated columns, especially in fact tables. Context transition is costly and will put the engine to a halt.
User | Count |
---|---|
16 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
8 | |
8 |