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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

Feb2025 NL Carousel

Fabric Community Update - February 2025

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