Skip to main content
Question

Scripting error - PDF

  • November 16, 2025
  • 4 replies
  • 24 views

Forum|alt.badge.img+2

Hello! I am trying to create a PDF-generating script using Scripting extension. When I run a script, I get an error message, "Can't set cell values: Field 'XXXX' is computed and cannot be set." Any idea how I can fix it?

4 replies

TheTimeSavingCo
Forum|alt.badge.img+31

That error means the script is trying to write into a computed field (formula / lookup / rollup / autonumber, etc), which isn’t possible I’m afraid

To fix it, go through the list of fields you’re updating in the script and make sure they’re all ‘editable’ field types (single line text, number, date, etc)


Mike_AutomaticN
Forum|alt.badge.img+28

Hey ​@Tsuguho,

For further reference on which field that reference is making to exactly, you will want to check the page below (replacing “YOUR_BASE_ID” with your actual base id). Then you can control search/find for the actual field id that the error is showng, and you’ll get exactly the name of the field you are having an issue with.

https://airtable.com/YOUR_BASE_ID/api/docs

FYI, your base id is that which reads like “apppGLr77rYe4yzXT” within your base url.

Completely different matter, but would love to have you join our Airtable Hackathon! Make sure to sign up!!

Mike, Consultant @ Automatic Nation 
YouTube Channel


Mike_AutomaticN
Forum|alt.badge.img+28

Also, if the issue persists just let me know and we can hop on a 5 min call and debug together.

Best,
Mike


Forum|alt.badge.img+2
  • Author
  • New Participant
  • 1 reply
  • November 18, 2025

Thank you both very much! It was resolved!!