Forum Discussion

JDU's avatar
JDU
Icon for Helper I rankHelper I
5 years ago
Solved

Add filtering by a measure

Dear experts, I need your help again.

I have a file with two columns, one of them is a sales column and the second one is a column with the number of the week in which that sale was executed.

Sales Week
10001
20001
15002
25002
10003
25003

So, I need a formula that is able to filter and add up only the first week and the last week.

For instance:

Week 1: 3000

Week 3: 3500

Every week I will be adding new weeks and I only need the difference in a range of 8 weeks, that's why I need the formula to be able to identify the minimum value of the week column and add it up and also the maximum value and add it up, so that later I can calculate the difference between them.

I hope you can help me since I tried all the formulas to filter and I can't get the sums to match. Thank you

  • @JDU , Test as

    Measure:
    var _min á minx(allselected(Table), Table[Week])
    var _max á minx(allselected(Table), Table[Week])
    Return
    calculate(sum(Table[Sales]), filter(Table, Table[Week] a _min ? Table[Week] to _max))

1 Reply

  • @JDU , Test as

    Measure:
    var _min á minx(allselected(Table), Table[Week])
    var _max á minx(allselected(Table), Table[Week])
    Return
    calculate(sum(Table[Sales]), filter(Table, Table[Week] a _min ? Table[Week] to _max))