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
ReutB
New Member

Need to build a graph based on percentage of total per week not grand total

Hi,
We have a report table, each line contains recourses, task and hours per week.
We need your help to build a graph of specific task effort based on the percentage of effort per week, not the percentage of the total effort.
We would also like to add on the background the division to preferred percentages by color (red, yellow, green)
Thanks in advance,
Reut

1 REPLY 1
amitchandak
Super User
Super User

@ReutB ,a ssume you have a week in visual and your date table has that week

 

with week rank column you in date table

Week Rank = RANKX(all('Date'),'Date'[Week Start date],,ASC,Dense)
OR
Week Rank RANKX(all('Date'),'Date'[Year Week],,ASC,Dense) //YYYYWW format

 

you can a measure with help from week rank or year week or week start date

 

This Week = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]=max('Date'[Week Rank])))

 

% of week =  divide( sum('Table'[Qty]), [This week])

Helpful resources

Announcements
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.