There is any table generator like QuickChart?

Sooo, finally I got it as @Darren_Murphy explained on a thread before.

  1. Create a Cloudinary account (free)
  2. Upload an image of your table. This is why the rows and columns are fixed, is an image where we will put text on top with a XY position.
  3. Create your XY position text.
  4. Use template function on Glide to make this values dynamic.

In order to do the step 3 I put some notes here:

URL TABLE encoded

  • %20 espace
  • %0D%0A break
  • %3A ":"

EXAMPLE OF THE IMAGE URL GENERATED WITH TEXT:

https://res.cloudinary.com/treseiscero/image/upload/ l_text:arial_30: PERSONA %20 1%0D%0APERSONA %20 2 ,g_west,x_310,y_-320/l_text:arial_30: PERSONA %20 3%0D%0APERSONA %20 4 ,g_west,x_790,y_-320/l_text:arial_30: PERSONA %20 5%0D%0APERSONA %20 6 ,g_west,x_1280,y_-320/l_text:arial_30: PERSONA %20 7%0D%0APERSONA %20 8 ,g_west,x_310,y_-50/l_text:arial_30: PERSONA %20 9%0D%0APERSONA %20 10 ,g_west,x_790,y_-50/l_text:arial_30: PERSONA %20 11%0D%0APERSONA %20 12 ,g_west,x_1280,y_-50/l_text:arial_30: PERSONA %20 13%0D%0APERSONA %20 14 ,g_west,x_310,y_210/l_text:arial_30: PERSONA %20 15%0D%0APERSONA %20 16 ,g_west,x_790,y_210/l_text:arial_30: PERSONA %20 17%0D%0APERSONA %20 18 ,g_west,x_1280,y_210/ Captura_de_pantalla_2021-12-15_a_las_16.03.25_cmsmin.png

RESULT:

4 Likes