Forum Discussion

hxnwx's avatar
hxnwx
Frequent Visitor
4 years ago
Solved

Divide columns for percentage

Taking a break from banging my head.   I have a table sorted by date.  For each daily there are 3 columns, 1, 2, and 3 and a column for total.  I want to show a column for the percentage 1 is of to...
  • Fowmy's avatar
    4 years ago

    hxnwx 

    You can add measures as follows:
    Modify and repeat for other two columns 

    Pcnt 1 = DIVIDE ( MAX( TableName[1] ) , MAX( TableName[2] ) )