79698991

Date: 2025-07-12 03:58:13
Score: 0.5
Natty:
Report link

I wonder if this will work inside the table?
Create a helper column inside the structured table with this formula:
=IFERROR(VALUE([@[Expense Amount]]), 0)

or

Use array-aware formulas and LET for Clarity. I had to look this one up.

=LET(expenses, OfficeForms.Table[Expense Amount], numericExpenses, IFERROR(VALUE(expenses), 0), numericExpenses)

outside the table this may do the trick, but I'm sure you want it inside the table.

=IFERROR(VALUE(INDEX(OfficeForms.Table[Expense Amount], ROW()-ROW($A$2)+1)), 0)

Adjust $A$2 based on where the table starts.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: zoecalifornia