Closed lax24r closed 4 months ago
@lax24r thanks for reaching out
you can access the entire table via e.g. {{body.values}}
so your template can be for example
<table>
{% for row in body.values %}
<tr>
{% for value in row %}
<td>{{ value }}</td>
{% endfor %}
</tr>
{% endfor %}
</table>
or you can send various parts to different sources like {{body.values.0.0}} and select the OBS Text source to send it to
Thanks for the quick response. I'm still a bit confused as to where I paste that code to get the entire table to output in the format I showed from my initial post (the blue background image). The JSON Path field doesn't allow a whole lot of code to be inserted.
Think I've just figure it out :)
Thanks so much for your assistance, this plugin is wonderful.
I have the following table (B3:D5) in Google Sheets that I want to output using the OBS urlsource plugin:
The youtube video shows how to return a single cell, but not the whole table. Can you please assist? I'm wanting to end up with something like below:
This is what I currently have set.