hi i have created a table where i have columns named Start date and End date, and total columnโฆ
when a user selects start and end dateโฆi want the total column to automatically fill the total from another table name activity, for data which falls between the start and end dates selected by the user
Solved! Go to Solution.
In your Total Column, you would inset an expression in the โApp Formulaโ property. That expression would be like this:
SUM(
SELECT(Your Table[Column to Sum],
AND(
[_THISROW].[Start Date] <= [Row Date Column],
[_THISROW].[End Date] >= [Row Date Column]
)
)
)
Be sure to replace the table name and column names with those in your app.
Also, you had said โdata which falls between the start and end datesโ. Adjust the operators however you see fit for your needs.
In your Total Column, you would inset an expression in the โApp Formulaโ property. That expression would be like this:
SUM(
SELECT(Your Table[Column to Sum],
AND(
[_THISROW].[Start Date] <= [Row Date Column],
[_THISROW].[End Date] >= [Row Date Column]
)
)
)
Be sure to replace the table name and column names with those in your app.
Also, you had said โdata which falls between the start and end datesโ. Adjust the operators however you see fit for your needs.
Dear all;
Iโm trying to do something like the above: to auto sum everyday ( by the day) the total amount of manufactured goods of every specific product in a industry, so I can build a stock control, and auto sum every dispatch of those products .
The data of the image above will be input only once a day. These are the goods produced.
The image above will be filled with the amount of each product dispatched in that purchase order.
Iโd like to summarize the daily inputs of production and the value of every kind of product dispatched by day into another table.
The above table will contemplate both production of goods, and dispatch of those.
Hopefully everything is well explained, and in advance, THANK YOU.
Regards;
Update:
It might have worked: the app doesnโt return the values from the sum, although the test of the equation does return the value, like the below:
Iโm still trying to figure out what is wrong with it, and still wondering if this update will trigger itself everyday.
Thanks in advance for your help.
User | Count |
---|---|
18 | |
14 | |
11 | |
7 | |
4 |