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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jcastr02
Post Prodigy
Post Prodigy

Goal by hour (include and exclude some hours)

Hello,

I have a goal measurement based on the number of people working during that hour.  However, we have some hours that have breaks included, How could I do a calculation to say   for 6am hour, goal is number of people X 7.5 (since we open at 6:30 and it's not a full hour).  There are other hours, but wasn't sure how to add that into my formula below.   Thank you.

 

goalcanisters.png

1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi, @jcastr02 ;

You could create a measure as follow:

Measure = 
IF(MAX('Table'[Hour]) in {TIME(6,0,0),TIME(22,0,0)},SUM('Table'[# of People Working])*7.5,
IF(MAX('Table'[Hour]) in {TIME(10,0,0),TIME(14,0,0)},SUM('Table'[# of People Working])*10,
SUM('Table'[# of People Working])*15))

The final show:

vyalanwumsft_0-1664760709567.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yalanwu-msft
Community Support
Community Support

Hi, @jcastr02 ;

You could create a measure as follow:

Measure = 
IF(MAX('Table'[Hour]) in {TIME(6,0,0),TIME(22,0,0)},SUM('Table'[# of People Working])*7.5,
IF(MAX('Table'[Hour]) in {TIME(10,0,0),TIME(14,0,0)},SUM('Table'[# of People Working])*10,
SUM('Table'[# of People Working])*15))

The final show:

vyalanwumsft_0-1664760709567.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

v-yalanwu-msft
Community Support
Community Support

Hi, @jcastr02 ;

Sorry, I don't quite understand what you mean; Can you give some examples?

please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hello @v-yalanwu-msft 

 

Normally the goal is the # of people working X 15 in each of the hour blocks. 

I'd like to do so that if its the 6am and 10pm shift, the goal is # of people working X 7.5, if it's the 10am, 2pm, and 6pm block, the goal is number of people working X 10,  all other hours are # of people working X 15.  I'd like to do it in a formula.  

 

# Produced# of People WorkingHourGoal
546am30
7107am150
998am135
869am90
20410am40
34411am60
60412pm60
6041pm60
7842pm40
9063pm90
8854pm75
8745pm60
6666pm60
2447pm60
5568pm90
6679pm105
7510pm37.5

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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