Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Analyzing sales data by quote size

Hi folks, I must be having a brain fart today because my question seems so basic.    I have transactional level sales data that looks like any other sales data - customer names, line item numbers, ...
  • Anonymous's avatar
    Anonymous
    5 years ago

    Hello amitchandak , I figured it out!  I created a calculated column with the following code

     

    Quote Size = Calculate(Sum(Table[Quote $)]), ALLEXCEPT(Table,Table[Quote ID]))
     
    From this column I can create a second column that uses a nested IF statement to define my bin sizes.  Its primative but effective.