Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
YBZ59
Regular Visitor

Conditional counting based on aggregate results

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

YBZ59_0-1701785334348.png

 

Here is the measure that provide the colored results

StatusResult = IF ( AND (ISBLANK (COUNT (KnowledgeDB[Result])),NOT(ISBLANK(COUNT(KnowledgeDB[SubmissionDate])))), "InProgress", MIN(KnowledgeDB[Result]))
 
I've been trying to count back the results from the measure using COUNTX and COUNTROWS with filter, none worked.
 
Thanks.
1 ACCEPTED SOLUTION
rubayatyasmin
Super User
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"
)
)


Did I answer your question? Mark my post as a solution!super-user-logo

Proud to be a Super User!


View solution in original post

1 REPLY 1
rubayatyasmin
Super User
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"
)
)


Did I answer your question? Mark my post as a solution!super-user-logo

Proud to be a Super User!


Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

Top Solution Authors
Top Kudoed Authors