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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello, i need your help for create a new column, this column should be a column incremental when the field is blank or empty. This dax generate a column when the field is not empty, i need the viceversa.
Best regards
@Anonymous , You need something that will allow you that.
If nothing add an index column https://stackoverflow.com/questions/45715963/creating-an-index-column-for-power-bi
Try a new column
if(isblank(TechSynergies[ID]),countx(filter(TechSynergies , [index] <=earlier([Index]) && isblank(TechSynergies[ID]) ),TechSynergies[ID]), blank())
or a new column
countx(filter(TechSynergies , [index] <=earlier([Index]) && isblank(TechSynergies[ID]) ),TechSynergies[ID])
I applied these dax but the field show all values empty or blank.
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
15 | |
7 | |
6 |