Running AI Blaze on Each Row of Google Sheets Data - Possible?

I have a Google sheet like this:

Col 1 | Col 2 (AI Blaze)
"Text 1" | "Ai Blaze Generated Text"
"Text 2" | "Ai Blaze Generated Text 2"

I want to run AI Blaze on each row to generate a text output.

Is this possible?

Hi Matthew, welcome to the forum!

You can use a trigger an AI Blaze prompt in any one of the cells in a Google Sheet to generate text based on the cell to the left. However, if you want to have it generate text for each Text X cell at once, you have to combine Text Blaze and AI Blaze.

I have recorded this video to show you how it's done. Here are the prompt and snippet I used.

{clipboard_data={clipboard}}{rows=extractregexall(clipboard_data, "row \d+: (.*)")}{repeat: for row in rows}{=row}{key: downarrow}{endrepeat}

row 1: apple
row 2: The quick brown fox jumps over the lazy dog in the meadow.
row 3: Why don't scientists trust atoms? Because they make up everything!

Generate output text based on each of the fields in column A and output the results for each column in this exact format for the number of rows with context: """ row [row number]: [output] row [row number]: [output] row [row number]: [output] row [row number]: [output] """

Let me know if you have any questions!

Best regards,
Alexander

1 Like