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

Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now

Reply
Selded
Helper III
Helper III

Bar Chart Help

Is there a visual in Power BI that I can use to achieve the below report that I have prepared in excel?

 

Daily, WTD and average

 

Selded_0-1633956125471.png

Thanks 

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

Hi  @Selded ,

 

First create a column in your fact table:

Month-day = FORMAT('Table'[date],"DD-MMM-YY")

Then create a dim table as below:

Table 2 = UNION(VALUES('Table'[Month-day]),ROW("name","WTD actual"),ROW("name","WTD Target"))

And a date table as below:

Date = CALENDAR("2021-1-1","2021-12-31")

Then create a measure as below:

Measure =
VAR _mindate =
    MINX ( ALLSELECTED ( 'Table' ), 'Table'[date] )
RETURN
    SWITCH (
        SELECTEDVALUE ( 'Table 2'[Month-day] ),
        "WTD actual",
            CALCULATE (
                SUM ( 'Table'[amount] ),
                FILTER (
                    ALLSELECTED ( 'Table' ),
                    'Table'[date] >= _mindate
                        && 'Table'[date] <= _mindate + 6
                )
            ),
        "WTD Target", 375466,
        SUM ( 'Table'[amount] )
    )

And you will see:

vkellymsft_0-1634191890161.png

For the related .pbix file,pls see attached.

 

Best Regards,
Kelly

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

View solution in original post

4 REPLIES 4
v-kelly-msft
Community Support
Community Support

Hi  @Selded ,

 

First create a column in your fact table:

Month-day = FORMAT('Table'[date],"DD-MMM-YY")

Then create a dim table as below:

Table 2 = UNION(VALUES('Table'[Month-day]),ROW("name","WTD actual"),ROW("name","WTD Target"))

And a date table as below:

Date = CALENDAR("2021-1-1","2021-12-31")

Then create a measure as below:

Measure =
VAR _mindate =
    MINX ( ALLSELECTED ( 'Table' ), 'Table'[date] )
RETURN
    SWITCH (
        SELECTEDVALUE ( 'Table 2'[Month-day] ),
        "WTD actual",
            CALCULATE (
                SUM ( 'Table'[amount] ),
                FILTER (
                    ALLSELECTED ( 'Table' ),
                    'Table'[date] >= _mindate
                        && 'Table'[date] <= _mindate + 6
                )
            ),
        "WTD Target", 375466,
        SUM ( 'Table'[amount] )
    )

And you will see:

vkellymsft_0-1634191890161.png

For the related .pbix file,pls see attached.

 

Best Regards,
Kelly

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

Pragati11
Super User
Super User

HI @Selded ,

 

You can use a Line and Clustered Column chart in Power BI to represent 2 metrics with common x-axis.

Something like below:

Pragati11_0-1633958200574.png

Thanks,

Pragati

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

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

Appreciate your Kudos!!

Proud to be a Super User!!

okay, so is impossible to have the WTD, daily, and average all on the same chart right

HI @Selded ,

 

In what format your data is, it depends on that as well.

Can you share some sample data here?

 

Thanks,

Pragati

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

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

Appreciate your Kudos!!

Proud to be a Super User!!

Helpful resources

Announcements
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

October NL Carousel

Fabric Community Update - October 2024

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