Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
I Have a table with records on training, two columns are 'Status' and 'Result', the Status hold intermediate value like "pending" verification the Result holds final values like "Pass" or "Fail", the issue is that the Pass/fail indication is getting created only upon completion of 3 records (3 intermediate tests.on other ocasions less, like 2, that number doesn't matter)
I'm trying to calculate additional situation/status that represents "InProgress" which means user submitted min 1 test - this will indicate he is InProgress untill that last record gets created (Pass/Fail).
Problem is, I don't have the InProgress populated anywhere, I need to use a measure in some way.
I was able to create a measure to indicate tha status per record, And I'm getting the view, but unfortunately unable to count the total number of user in InProgress
Here is the measure that provide the colored results
Solved! Go to Solution.
Hi, @YBZ59
Create a calculated column by using something like
InProgressStatus = IF(
ISBLANK([Result]) && NOT(ISBLANK([SubmissionDate])),
"InProgress",
[Result]
)
then create a dax measure to count the inProgress values.
InProgressRecordsCount = COUNTROWS(
FILTER(
KnowledgeDB,
[InProgressStatus] = "InProgress"
)
)
Proud to be a Super User!
Hi, @YBZ59
Create a calculated column by using something like
InProgressStatus = IF(
ISBLANK([Result]) && NOT(ISBLANK([SubmissionDate])),
"InProgress",
[Result]
)
then create a dax measure to count the inProgress values.
InProgressRecordsCount = COUNTROWS(
FILTER(
KnowledgeDB,
[InProgressStatus] = "InProgress"
)
)
Proud to be a Super User!
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 |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 8 | |
| 6 | |
| 6 | |
| 5 |