Creating PDF with collumn values

Hello guys,

Something that i really don’t understand…

So i made a bot, that send an e-mail. Easy ass that, but i create an attachment (automatic generated by appsheet themself).

And when i send it and check it in the monitor.
“Unable to found collumn”

Is there an option that i forgot?





0 3 132
3 REPLIES 3

You haven’t showed the Bot Event details. Based on what you have shown, my guess is that this is a Scheduled Bot and the ForEachRowInTable property is turned off.

When the ForEachRowInTable property is turned off, the Filter Condition only acts as a switch to run or not run the Bot. No rows are passed to the template in this case. The template would be responsible for selecting all of the “Producten” rows it wishes to report on.

In your case, the template is defined expecting that an initial row is passed in. Since it seems that is not the case, the template cannot resolve the column references at the top of the template.

On the other hand, if the ForEachRowInTable is turned on, each row identified by the Filter Condition in the Event would be passed to the template one-by-one sending a separate email for each row.

So, if the above is correct, the question is how do you wish the emails to be sent when MULTIPLE rows are identified by the Event Filter Condition?

  • a single emailed report with all identified rows included?
  • a report emailed for each row separately?

Hello Thank you for the great respons.

The first option is the option that i want " a single emailed report with all identified rows included?"

Here are my bot details: (Now i get 10 seperate e-mails, but i want one totale file (or body) in one email …

Is that also an option?



thank you!

Yes you can do this. You will need to adjust the Event of the Bot and the template.

IN the Bot, turn “off” the ForEachRowInTable property. The filter criteria should then change to test if there are rows to report on - a run / not run test. So something like:

COUNT(SELECT(Producten[ID], [Total Stock Available] <= 1)) > 0

In the template, you will need to place a Start/End block around the entire text. This is a template function that selects the rows for the template to operate on. You would use the same SELECT() (do not include COUNT) expression shown above from the Bot’s Event Filter Condition.

You can get more details on using START in template with this article below. Note: there are not any great examples of a SELECT() like you need but you can basically place any row List generating expression inside the START tag - SELECT(), FILTER(), ORDERBY(), etc.

Top Labels in this Space