I have a formula which concatenates queries (from construction company to employer) so that it appears with line breaks in a workflow pdf report. I used to have the queries just in one query column, but I am now using a Hyperlink to google form response for the client to be able to respond from the workflow email. The problem is I canβt figure out how to keep line breaks as the url is referencing to the cell value (so in the google sheet cell there could be Query1 line break Query 2 line break Query 3 etc). Itβs working now the way I want it to, but how do I adapt formula to ignore lets say query5 to query10 if there is no data filled in there? This is so that I donβt get unecessary spaces below queries in my reports. Note. Currently the queries build from 1, so if there is 3 queries then there will be Query1, Query2, Query3 blank columns for the remaining Query4 to Query10.
Appsheet Formula currently using below;
CONCATENATE( [QUERY1],"
β,[QUERY2],β
β,[QUERY3],β
β,[QUERY4],β
β,[QUERY5],β
β,[QUERY6],β
β,[QUERY7],β
β,[QUERY8],β
β,[QUERY9],β
",[QUERY10])
Apolgies I found a few topics covering line breaks, but could not find how to ignore blank βcolumnsβ


