Forum Discussion

Khushboobarai's avatar
Khushboobarai
Helper IV
6 months ago
Solved

% CT SALES

I have matrix visual  3 matric visaul one has column as date, one has month and last has year  i want to claculte % share which we can do directly frm the value option as to show the value as % of ...
  • rohit1991's avatar
    6 months ago

    Hii Khushboobarai 

     

    Use this single measure for % of Column Total (Sales):

    % Column Total Sales =
    DIVIDE(
        [Sales],
        CALCULATE(
            [Sales],
            ALLSELECTED(YourTable[RowField])
        )
    )