Forum Discussion
Filter values by company
According to your solution I see some extra data. Looking at this below image
Table1 is raw data. By applying your formula and making the data into a table,
The yellow marked Row seems to be an extra one becuase, take an example with ID Company 3::
ID Compnay 3 has
Receive 1000 which is row #4 GOOD.
Transfer of 1000 and 500 which are row #4 and row #6 GOOD.
But I don't understand the Row#5 which says Receive 1000 and transfer 1000 NOT GOOD.
My bad =oP applying Filter will solve the issue:
- Received = CALCULATE(SUM(Sheet6[Sales]),FILTER(Sheet6,Sheet6[Extract] = "Received"))
- Transferred = CALCULATE(SUM(Sheet6[Sales]),FILTER(Sheet6,Sheet6[Extract] = "Transferred"))
Regards
Abduvali
- pxg086808 years agoResolver III
- Gelain8 years agoFrequent Visitor
Thank you for helping me.
I was able to correctly generate the value sent and received by company. To finish, I need to create two filters: one for the company that transferred and another filter for the company that received the values, that is, to detail the destination of the resources transferred by company. I made a few attempts, but could not solve.