Get the total sum of monthly income from my budgeting app

Hi,

I have a budgeting app. I record the daily net income, but i want to get the monthly net income. what is the formula for this?

0 1 38
1 REPLY 1

Try something like:

SUM(
SELECT(
table_name[daily net income],
AND(
MONTH([date column]) = MONTH([_thisRow].[Date Column]),
YEAR([date column]) = YEAR([_thisRow].[Date Column])
)
)
)

Top Labels in this Space