indirect cell references seem to be causing formulas to not be sent to my sheet.
-
Hi There. I love your plugin first off! Thanks!
I have a major issue though. I did search first and am sorry if I missed a thread that covered this….I’m sending some hidden fields to my sheet and they include formulas.
Here’s an example of my issue.
If I send this field below.
[hidden payment-amount default:”=If(X12>0,(65+25*Y12),0)”]
It sends to my google sheet fine, but I need a row relative reference. So, not X12 every time, but column X of the current row, and not Y12, but column Y of the current row.When I try to do this using the alterations below (this formula works fine if I type it directly into my cell of my google sheet so I don’t think there’s an issue with the formula)
[hidden payment-amount default:”=If(indirect(“X” & row())>0,(65+25*indirect(“Y” & Row())),0)”]
I get an empty cell for that field in my sheet.Is there something I am missing, or can you offer any advice on another method to accomplish this?
I have three total fields that are having the same issues.
Below are the other two with and without indirect references to the cell.This one works, but is not what I need.
[hidden divisions-more-than-one default:”=IF(X13>0,X13-1,0)”]This one is what I need, but leaves an empty cell in my sheet.
[hidden divisions-more-than-one default:”=IF(indirect(“X” & row())>0,indirect(“X” & row())-1,0)”]This one works, but is not what I need.
[hidden number-divisions-requested default:”=10-COUNTBLANK(H10:Q10)”]This one is what I need, but leaves an empty cell in my sheet.
[hidden number-divisions-requested default:”=10-COUNTBLANK(indirect(“H” & row()):indirect(“Q” & row()))”]Thanks in advance for anything you can do to help!
- The topic ‘indirect cell references seem to be causing formulas to not be sent to my sheet.’ is closed to new replies.