Forum Discussion

NewbieJono's avatar
NewbieJono
Icon for Post Partisan rankPost Partisan
2 years ago
Solved

Adding more to a Total

The table below adds up volumes each day. However I need to add an additional 10,000 to day 1 which needs to appear in the total. whats the best method to do this

 

 

1 Reply

  • NewbieJono 

    is this what you want?

    Measure = if(max('Table'[date])=CALCULATE(min('Table'[date]),ALL('Table'))&&not(HASONEFILTER('Table'[range])),sum('Table'[value])+10000,sum('Table'[value]))
     
     
    pls see the attachment below