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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
bdehning
Post Prodigy
Post Prodigy

Need Count Measure

I use the following measure to show days with Activity on chart and a total in a table by using Date of Service Field.    

 

Count Days with Service Completed Tasks = COUNTROWS(DISTINCT(isiInspections[Date Of Service]))

 

Date Of Service also has corresponding Activity Column of either onsite, other or remote.     

 

How do I create a Measure to Count the total number of "onsite" activities?

 

 
 
 
1 ACCEPTED SOLUTION
rajendraongole1
Super User
Super User

Hi @bdehning - can you try below measure for onsite activies

Count Onsite Days with Service Completed Tasks =
CALCULATE(
COUNTROWS(
DISTINCT(isiInspections[Date Of Service])
),
isiInspections[Activity] = "onsite"
)

 

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

2 REPLIES 2
rajendraongole1
Super User
Super User

Hi @bdehning - can you try below measure for onsite activies

Count Onsite Days with Service Completed Tasks =
CALCULATE(
COUNTROWS(
DISTINCT(isiInspections[Date Of Service])
),
isiInspections[Activity] = "onsite"
)

 

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Ok that worked great.   Now, how do I tweak that measure to only Count number Onsite days when there was 2 or more?      

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.