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
rax99
Helper V
Helper V

Dynamically change measure value depending on the axis and drill level

I have a simple chart like this:

 

salesTarget.JPG

 

Ignoring the stacked element, the bars show the measure [TotalSales]

 

I need to create a target line that is 80% of the measure value for the first month/year/day in the chart (depending on drill level)

 

For example, in the pic above I have harcoded the value at 28000 (based on totalsales for March) so it shows a straight target line. across. How do I create a measue that does this and dynamically changes based on the first day or month or year and also dynamically changes depending on the level drilled?

 

Ive tried something like this but to no avail:

TargetSales = VAR SALESMARCH = CALCULATE(SUM(Sales[TotalSales]),CALENDAR("20180301","20180330"))
              VAR PERCENT80 = SALESMARCH*0.8
              RETURN PERCENT80
1 ACCEPTED SOLUTION
v-frfei-msft
Community Support
Community Support

Hi @rax99,

 

I made one sample for your reference.

 

1. Create a date table and create relationship with the fact table.

 

2, To create a calculated column in the fact table.

 

YEARMONTH = YEAR('Table1'[date])*100 +MONTH('Table1'[date])

3. Create a measure as below.

 

mea =
VAR countr =
    CALCULATE ( DISTINCTCOUNT ( 'Table1'[date] ), ALLSELECTED ( Table1[date] ) )
VAR countrm =
    CALCULATE ( DISTINCTCOUNT ( 'Table1'[date] ), ALL ( Table1 ) )
VAR mindate =
    CALCULATE ( MIN ( 'Table1'[date] ), ALL ( Table1 ) )
VAR maxdate =
    CALCULATE ( MAX ( 'Table1'[date] ) )
RETURN
    IF (
        ISBLANK ( countr ),
        BLANK (),
        IF (
            countr > 1
                && countr < countrm,
            CALCULATE (
                SUM ( Table1[amount] ),
                FILTER (
                    ALL ( Table1 ),
                    Table1[YEARMONTH]
                        = YEAR ( mindate ) * 100
                            + MONTH ( mindate )
                )
            )
                * 0.8,
            IF (
                countr = 1,
                CALCULATE (
                    SUM ( Table1[amount] ),
                    FILTER ( ALL ( Table1 ), 'Table1'[date] = mindate )
                )
                    * 0.8,
                CALCULATE ( SUM ( Table1[amount] ), ALL ( Table1 ) ) * 0.8
            )
        )
    )

Capture.PNG

 

For more details, please check the pbix as attached.

 

Regards,

Frank

 

 

 

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

2 REPLIES 2
v-frfei-msft
Community Support
Community Support

Hi @rax99,

 

I made one sample for your reference.

 

1. Create a date table and create relationship with the fact table.

 

2, To create a calculated column in the fact table.

 

YEARMONTH = YEAR('Table1'[date])*100 +MONTH('Table1'[date])

3. Create a measure as below.

 

mea =
VAR countr =
    CALCULATE ( DISTINCTCOUNT ( 'Table1'[date] ), ALLSELECTED ( Table1[date] ) )
VAR countrm =
    CALCULATE ( DISTINCTCOUNT ( 'Table1'[date] ), ALL ( Table1 ) )
VAR mindate =
    CALCULATE ( MIN ( 'Table1'[date] ), ALL ( Table1 ) )
VAR maxdate =
    CALCULATE ( MAX ( 'Table1'[date] ) )
RETURN
    IF (
        ISBLANK ( countr ),
        BLANK (),
        IF (
            countr > 1
                && countr < countrm,
            CALCULATE (
                SUM ( Table1[amount] ),
                FILTER (
                    ALL ( Table1 ),
                    Table1[YEARMONTH]
                        = YEAR ( mindate ) * 100
                            + MONTH ( mindate )
                )
            )
                * 0.8,
            IF (
                countr = 1,
                CALCULATE (
                    SUM ( Table1[amount] ),
                    FILTER ( ALL ( Table1 ), 'Table1'[date] = mindate )
                )
                    * 0.8,
                CALCULATE ( SUM ( Table1[amount] ), ALL ( Table1 ) ) * 0.8
            )
        )
    )

Capture.PNG

 

For more details, please check the pbix as attached.

 

Regards,

Frank

 

 

 

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Hi @rax99,

 

Does that make sense? If so, kindly mark my answer as a solution to close the case.


Regards,
Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

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.