Home Business Intelligence Highlighting Beneath Avg Gross sales per Hierarchy Degree with SWITCH() and ISINSCOPE() DAX Capabilities in Energy BI

Highlighting Beneath Avg Gross sales per Hierarchy Degree with SWITCH() and ISINSCOPE() DAX Capabilities in Energy BI

0
Highlighting Beneath Avg Gross sales per Hierarchy Degree with SWITCH() and ISINSCOPE() DAX Capabilities in Energy BI

[ad_1]

Highlighting Below Avg Sales per Hierarchy Level with SWITCH() and ISINSCOPE() DAX Functions in Power BI

I used to be engaged on a challenge a wee bit in the past that the shopper had conditional formatting requirement on a Column Chart.
They needed to format the columns within the chart conditionally primarily based on the common worth primarily based on the extent of hierarchy you might be at.
Right here is the situation, I’ve a Calendar hierarchy as beneath:

  • Calendar Hierarchy:
    • Yr
    • Semester
    • Quarter
    • Month
    • Day

I take advantage of “Journey Works DW2017, Web Gross sales” Excel as my supply in Energy BI Desktop. If I need to visualise “Whole Gross sales” over the above “Calendar Hierarchy” I get one thing like this:

Line Chart in Power BI, Total Sales by Year

Now I activate “Common Line” from “Analytics” tab of the Line chart.

Adding Average Line to Line Chart in Power BI

After I drill down within the line chart the Common line exhibits the common of that specific hierarchy stage that I’m in. That is fairly cool that I get the common base on the extent that I’m in code free.

Power BI, Drilling Donw in Line Chart

Simple, proper?

Now, the requirement is to point out the above behaviour in a “Column Chart” (sure! visualising time sequence with column chart, that’s what the shopper needs) and spotlight the columns with values beneath common quantity in Orange and go away the remaining in default theme color.

So, I have to create Measures to conditionally format the column chart. I additionally want so as to add a little bit of clever within the measures to:

  • Detect which hierarchy stage I’m in
  • Calculate the common of gross sales for that specific hierarchy stage
  • Change the color of the columns which are beneath the common quantity

Let’s get it achieved!

Detecting Hierarchy Degree with ISINSCOPE() DAX Operate

Microsoft launched ISINSCOPE() DAX operate within the November 2018 launch of Energy BI Desktop. Quickly after the announcement “Kasper de Jonge” wrote a concise blogpost about it.

So I attempt to maintain it so simple as attainable. Right here is how is works, the ISINSCOPE() operate returns “True” when a specified column is in a stage of a hierarchy. As acknowledged earlier, we now have a “Calendar Hierarchy” together with the next 5 ranges:

  • Yr
  • Semester
  • Quarter
  • Month
  • Day

So, to find out if we’re in every of the above hierarchy ranges we simply have to create DAX measures like beneath:

ISINSCOPE Yr		=	ISINSCOPE('Date'[Year])
ISINSCOPE Semester	=	ISINSCOPE('Date'[Semester])
ISINSCOPE Quarter	=	ISINSCOPE('Date'[Quarter])
ISINSCOPE Month		=	ISINSCOPE('Date'[Month])
ISINSCOPE Day		=	ISINSCOPE('Date'[Day])

Now let’s do a simple experiment.

  • Put a Matrix on the canvas
  • Put the “Calendar Hierarchy” to “Rows”
  • Put the above measures in “Values”
Detecting Year, Semester, Quarter, Month and Day hierarchy levels with ISINSCOPE in Power BI Desktop

As you see the “ISINSCOPE Yr” exhibits “True” for the “Yr” stage. Let’s develop to the to the subsequent stage and see how the opposite measures work:

Hierarchy-Levels-in-Power-BI-Desktop

Consolidating Measures in One Measure

Now that we see how ISINSCOPE() operate works, let’s take one other step additional and see how we will consolidate all measures into only one measure. Bear in mind, our situation is to calculate Common values for every hierarchy stage. I take advantage of a mixture of “SWITCH()“, “TRUE()” and “ISINSCOPE()” features to determine every stage. There’s a caveat in utilizing the mixture of the three features that I clarify.

Here’s what we wish obtain on this part. We would like to have the ability to present the hierarchy stage in a Matrix visible. To take action we use “SWITCH()” operate as beneath:

  • If hierarchy stage is Yr then present “Yr”
  • If hierarchy stage is Semester then present “Semester”
  • If hierarchy stage is Quarter then present “Quarter”
  • If hierarchy stage is Month then present “Month”
  • If hierarchy stage is Day then present “Day”

Let’s replicate the above in DAX. One thing like this will work proper?

Hierarchy Degree = 
SWITCH(
    TRUE()
        , ISINSCOPE('Date'[Day]), "Day"
        , ISINSCOPE('Date'[Month]), "Month"
        , ISINSCOPE('Date'[Quarter]), "Quarter"
        , ISINSCOPE('Date'[Semester]), "Semester"
        , ISINSCOPE('Date'[Year]), "Yr"
        , "Different"
    )

As per the documentation of the “SWITCH()” operate the above expression should work like this:

Consider logical “TRUE()” in opposition to a listing of values that are the ISINSCOPE() features and return ONE of a number of consequence expressions. Subsequently, once we use the above measure in a Matrix with the “Calendar Hierarchy” we’ll get to detect every hierarchy stage in a single single measure.

Detecting Hierarchy Level with SWITCH, TRUE and ISINSCOPE Functions in DAX

As you see we accurately detected the hierarchy ranges in a single measure. Right here is the caveat, we now have to create a listing of values in reverse order as we see within the our hierarchy. So, “Day” in “Calendar Hierarchy” is stage 5 and “Yr” is stage 1, subsequently, we begin with “Day” once we write our SWITCH() operate. If we need to write the above measure with IF() we’ll have one thing like beneath:

Hierarchy Degree with IF = 
IF(ISINSCOPE('Date'[Day]), "Day"
    , IF(ISINSCOPE('Date'[Month]), "Month"
        , IF(ISINSCOPE('Date'[Quarter]), "Quarter"
            , IF(ISINSCOPE('Date'[Semester]), "Semester"
                , IF(ISINSCOPE('Date'[Year]), "Yr", "Different")
            )
        )
    )
)
Detecting Hierarchy Level with IF and ISINSCOPE Functions in DAX

Calculate Common of Gross sales Hierarchy Ranges

The following step is to calculate Common Gross sales for every hierarchy stage as beneath:

Every day Avg = 
AVERAGEX(
    ALL('Date'[Date])
    , [Total Sales]
    )
Month-to-month Avg = 
CALCULATE(
    AVERAGEX(
        ALL('Date'[Year], 'Date'[Month], 'Date'[MonthNumberOfYear])
        , [Total Sales]
        )
    , ALLEXCEPT('Date', 'Date'[Year], 'Date'[Month], 'Date'[MonthNumberOfYear])
    )

Observe that I used ‘Date'[Month] together with ‘Date'[MonthNumberOfYear] in each ALL and ALLEXCEPT features. The explanation for that’s that I sorted ‘Date'[Month] column by ‘Date'[MonthNumberOfYear]. Be taught extra about potential negative effects of sorting a column by one other column right here.

Quarterly Avg = 
CALCULATE(
    AVERAGEX(
        ALL('Date'[Year], 'Date'[Quarter])
        , [Total Sales]
        )
    , ALLEXCEPT('Date', 'Date'[Year], 'Date'[Quarter])
    )
Semesterly Avg = 
CALCULATE(
    AVERAGEX(
        ALL('Date'[Year], 'Date'[Semester])
        , [Total Sales]
        )
    , ALLEXCEPT('Date', 'Date'[Year], 'Date'[Semester])
    )
Yearly Avg = 
CALCULATE(
    AVERAGEX(
        ALL('Date'[Year])
        , [Total Sales]
        )
    , ALLEXCEPT('Date', 'Date'[Year])
    )
Hierarchy Levels and Average of Hierarchy Levels with DAX in Power BI Desktop

Now we have to create one other measure just like the “Hierarchy Degree” measure we created earlier utilizing SWITCH(), TRUE() and ISINSCOPE() features so it exhibits “Gross sales Common” for every related hierarchy stage. The measure seems to be like beneath:

Common Gross sales by Hierarchy Degree = 
SWITCH(TRUE()
        , ISINSCOPE('Date'[Day]), [Daily Avg]
        , ISINSCOPE('Date'[Month]), [Monthly Avg]
        , ISINSCOPE('Date'[Quarter]), [Quarterly Avg]
        , ISINSCOPE('Date'[Semester]), [Semesterly Avg]
        , ISINSCOPE('Date'[Year]), [Yearly Avg]
    )
Sales Average per Hierarchy with DAX in Power BI Desktop

Creating Conditional Formatting Measure

The final piece of the puzzle is to create a measure that we’re going to make use of to format our column chart conditionally. The beneath measure determines if the “Gross sales” is beneath “Common Gross sales by Hierarchy Degree” then returns “Orange” else it does nothing.

Column Chart Avg Conditional Formatting = 
SWITCH(
    TRUE()
    , ISBLANK([Total Sales]), BLANK()
    , [Total Sales] < [Average Sales by Hierarchy Level], "Orange"
    , BLANK()
)

Now we’re all set. The one remaining half is to make use of the above measure to conditionally format a column chart that exhibits “Gross sales” Over “Calendar Hierarchy”.

  • Put a Column Chart on the report web page
  • Put “Whole Gross sales” to “Values”
  • Put “Calendar Hierarchy” to Axis
Showing Total Sales by Calendar Hierarchy with Bar Chart in Power BI Desktop
  • Broaden “Knowledge color” from “Format” tab from “Visualisations” Pane
  • Hover over default color
  • Click on ellipsis button
  • Click on “Conditional Formatting”
  • Choose “Area Worth” from “Format by” dropdown
  • Choose the latter measure we created from the “Primarily based on subject” part then click on OK
Conditional formatting bar chart using measures in Power BI Desktop

Here’s what you get:

Highlighting Sales below average in hierarchies in Power BI Desktop

As you may see we decided Gross sales beneath common primarily based on hierarchy stage we’re at. To make this even higher we will allow a median line within the bar chart. This may be achieved from the “Analytics” tab and enabling “Common line”.

Enabling average line in bar chart in Power BI Desktop

Now for those who develop right down to the opposite ranges you may shortly see the when you’ve Gross sales beneath common.

Calculating Sales below average with conditional formatting in Bar Chart in Power BI Desktop

Observe: The above measure used within the conditional formatting of the Bar Chart DOESN’T work for those who allow “Drill down” because it places filters on the chosen merchandise that you simply drilled down. So that you’d be higher to disable “Drill down” button from the “Visible Header” settings.

Turning off "Drill down"

Observe: This solely impacts the reader view when the report is printed to Energy BI Service, subsequently, you can not see its impact in Energy BI Desktop.

Highlighting Below Avg Sales per Hierarchy Level with SWITCH() and ISINSCOPE() DAX Functions in Power BI

Have you ever used this methodology earlier than? Have you learnt a greater strategy to sort out this? Please tell us within the feedback part beneath.

[ad_2]

LEAVE A REPLY

Please enter your comment!
Please enter your name here