Excel table with formulas not applying to the next rows #4090
Unanswered
marcwitteveen
asked this question in
Q&A
Replies: 1 comment
-
You need to add "Column Formulas" to your table: $table->getColumn('B')
->setColumnFormula(
"=IFERROR(VLOOKUP(A$startRow, Application!B$12:F"
. (12 + $numberOfEvents) . ", 2, FALSE), \"\")"
); // Level
$table->getColumn('C')
->setColumnFormula(
"=IFERROR(VLOOKUP(A$startRow, Application!B$12:F"
. (12 + $numberOfEvents) . ", 3, FALSE), \"\")"
); // Round
$table->getColumn('D')
->setColumnFormula(
"=IFERROR(VLOOKUP(A$startRow, Application!B$12:F"
. (12 + $numberOfEvents) . ", 4, FALSE), \"\")"
); // Judge |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I am using an excel template, in this template I have create a sheet names Rally with a table... the headers of these tables are in row 2 and have Code, Level, Round, Judge, Stream, Dog #, Name, Time and Score.
Trough code, on row 3 I have created a dropdown box for Code and lookup formulas for Level, Round and Judge.
However when I tab trough the cells on row 3 and it goes to row 4, I dont have these dropdown box and look up formulas anymore, while if I do it manual in excel I still have them.
The generated excel file: generated_file (21).xlsx
Beta Was this translation helpful? Give feedback.
All reactions