Basically I have encountered a problem with this Budget Tracker template for mobile layout. Spent amount is not calculated properly. For example if I add expense amount 100$ it is showing 475$ as amount spent.
So I searched through the same template but now for tablet layout and it was working just right. So I changed BudgetTitle to BudgetId on the same place according to tablet template and it worked. You will see on snipets and in text below.
(I am beginner correct me if I am wrong, please)
Problem:
If(Text(Coalesce(Sum(Filter(Expenses,BudgetTitle = Gallery1.Selected.BudgetTitle && BudgetId=Gallery1.Selected.BudgetId), Value(Expense)),0),"[$-en-US]$#,##")="$","$0",Text(Coalesce(Sum(Filter(Expenses,BudgetTitle = Gallery1.Selected.BudgetTitle), Value(Expense)),0),"[$-en-US]$#,##"))
Solution:
If(Text(Coalesce(Sum(Filter(Expenses,BudgetTitle = Gallery1.Selected.BudgetTitle && BudgetId=Gallery1.Selected.BudgetId), Value(Expense)),0),"[$-en-US]$#,##")="$","$0",Text(Coalesce(Sum(Filter(Expenses,BudgetId = Gallery1.Selected.BudgetId), Value(Expense)),0),"[$-en-US]$#,##"))

Report
All responses (
Answers (