Forum Discussion
Warehouse daily stock calculation
- 5 years ago
I can't read the columns in your dispatch and receding tables, so you will have to swap those out.
place the Date[Date] column in your visual, then ther measure
=calculate(sum(receiving[in]) - sum(dispatch[out]),filter(all(Date),Date[date] <=max(Date[date])))
Dear Matt.
Thank you. but which table should I choose in "filter(all (table)"?
I could not fully understand.
I can't answer that question - you haven't provided any information about your tables.
- ozsoyozan5 years agoNew Member
I have three separate tables. Date, Dispatch and Receiving. The Date table is related with other tables.
- MattAllington5 years agoCommunity Champion
I can't read the columns in your dispatch and receding tables, so you will have to swap those out.
place the Date[Date] column in your visual, then ther measure
=calculate(sum(receiving[in]) - sum(dispatch[out]),filter(all(Date),Date[date] <=max(Date[date])))
- ozsoyozan5 years agoNew Member
Dear Matt
This formula worked.
Thank you so much.
Regards