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
travbum
Advocate I
Advocate I

Plotting Data Weekly

I have this data below which is collected once a week. I've tried a few differnt ways of plotting this and Power BI doesn't seem to like it. What am I missing and how can I work with this data?

 

1-Jun5
8-Jun11
15-Jun16
22-Jun22
29-Jun30
6-Jul32
13-Jul34
20-Jul37
27-Jul40
3-Aug45
2 ACCEPTED SOLUTIONS
Sean
Community Champion
Community Champion

@Sean

 

That is a lot more elegant than the solution I was attempting to work towards. Thanks!

View solution in original post

6 REPLIES 6
Sean
Community Champion
Community Champion

what exactly doesn't PBI like?

 

Weekly Data.png

I am new to Power BI and have tried to plot similar weekly data. I tried using the formula given in the post but I couldn't get it to work. Please could somebody show me how to do this so that I can show data collected on a weekly basis on a graph, and show the date rather than week number on the axis (just as in the example above)

@Sean

Thanks for the fast reply! What's going on in your table with Week?

Sean
Community Champion
Community Champion

Week = YEAR(Table[Date])&"-"&WEEKNUM(Table[Date])

https://msdn.microsoft.com/en-us/library/ee634572.aspx

@Sean

 

That is a lot more elegant than the solution I was attempting to work towards. Thanks!

Sean
Community Champion
Community Champion

@travbum Well since you said "elegant" now I feel compelled to give you the solution that will sort weeks 1 thru 9 properly

 

Year-Week =
    YEAR ( 'Calendar'[Date] ) & "-"
        & CONCATENATE (
            IF ( WEEKNUM ( 'Calendar'[Date] ) < 10, "0", "" ),
            WEEKNUM ( 'Calendar'[Date] )
        )

 

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.