The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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 | |
13 | |
8 | |
6 | |
6 |
User | Count |
---|---|
27 | |
19 | |
12 | |
9 | |
7 |