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.
Thanks in advance for helping me with this challenge
here I'm trying to indentify empty row as pending. this the DAX code I wrote
Solved! Go to Solution.
Hi @Rio007
You may try
Status =
IF (
'Fact-Tasks'[Closed] = BLANK (),
"Pending",
'Fact-Tasks'[Closed] & "" )
)
Hi @Rio007
You may try
Status =
IF (
'Fact-Tasks'[Closed] = BLANK (),
"Pending",
'Fact-Tasks'[Closed] & "" )
)
Thank You so much this exactly what I needed
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
9 | |
7 |