Forum Discussion

bangerz253's avatar
bangerz253
Frequent Visitor
7 years ago
Solved

Create new column for measure?

Hello, I'm looking to create a new column for a conversion rate. Ex.  In Cali of April, there is 136 TRUE and 364 Total, so I want a new column that does 136/364 and so on for FALSE, SERVICE. A...
  • jar2019's avatar
    jar2019
    7 years ago

    I see: 

    1) right click anywhere in the table dropdown on the right.

    2) click quick measure (also in the ribbon on home->top right)

    3) use the dropdown in the quick measure pop up to select your operation

     

    So you need to create a total by category measure first

    (this will be the sum of all your columns) by state

     

    Then you can create another quick measure that divides the "total measure" we just created by the columns Tru, Fals, Etc. using the division operator. 

     

    You can also create a new column but this can take up a lot of space if you have a lot of records. 

     

    You could also use DAX and use the "measure" instead of "quick measure" 

    Measure Total = SUMX('Table','table'[False]+'Table'[True]...etc)