I have a formula that is using VLOOKUP to pull an item's price from the Price List sheet. It need to account for 3 possibilities:
- The product is in our database - in which case the VLOOKUP work
- The product isn't in our database - in which case it says there is no price in the system
- The line is a PARENT row and doesn't need to show a price
The current formula: =IF(PRODUCT@row= "", "", IFERROR(VLOOKUP(PRODUCT@row, {Price List Range 3}, 5, false), "no fixed price in system")). That formula works perfectly.
THE CHALLENGE: I want the PARENT rows to show totals for its CHILDREN. I'm trying to use the SUM(CHILDREN() formula and can't crack it correctly! Can you help? I'm getting UNPARSEABLE with all the options I've tried. This is my first time using the SUM(CHILDREN) formula and I'm obviously doing it incorrectly.
Help please!