Forum Discussion

iozkan's avatar
iozkan
Regular Visitor
8 years ago
Solved

Defining basis month or year and comparing

Hi guys,   I have a table of sales figures with dates (monthly, quarterly, yearly) and I'd like to choose a basis month or year (which will be 100 and should change according to selected month or y...
  • Zubair_Muhammad's avatar
    Zubair_Muhammad
    8 years ago

    iozkan

     

    Bascially I have used a New Table of Dates to slice the original Table

     

    A New Table (Calculated Table) was created from the Modeling Tab>>> NEW TABLE

    New_Table =
    ALL ( TableName[Date] )

    Then following MEASURE was added to Original Table

     

    Index =
    VAR selectedmonthSales =
        CALCULATE (
            SUM ( TableName[Sales] ),
            FILTER (
                ALL ( TableName ),
                TableName[Date] = SELECTEDVALUE ( 'New_Table'[Date] )
            )
        )
    RETURN
        IF (
            SELECTEDVALUE ( TableName[Date] ) = SELECTEDVALUE ( 'New_Table'[Date] ),
            100,
            SELECTEDVALUE ( TableName[Sales] ) * 100
                / selectedmonthSales
        )
  • Zubair_Muhammad's avatar
    Zubair_Muhammad
    8 years ago

    iozkan

     

    Using Slicer from New Table, now you can get the required Index Measure in your Original Table