Your Setup:
- SeaTable Edition (Developer or Enterprise)
 - SeaTable Version (only necessary for self-hosted):
You can find your SeaTable Server version athttps://your-server-url/server-info 
Describe the Problem/Error/Question:
Please describe your issue as precise as possible. If helpful, you can also provide:
- API endpoints you used
 - Commands you executed (remove credentials)
 - Screenshots
 - Diagrams with Excalidraw
 
Error Messages:
If there are any error messages shown in the console or in the logs, please include them for better readability by wrapping them in a code block.
Example of a code block for error messages
Hello Everybody. I’m pretty new to SeaTable and I have a Problem.
Base Structure:
Table: CEL-Rohdaten
Columns: 15 (e.g. “Equipment”, “Event”)
Rows: Up to 30.000
Whole table will be updated often by hand with new Data provided by an .csv file.
Table: Event
Columns: 10 (only one equal to Table “CEL-Rohdaten”)
Rows: Depending on Table “CEL-Rohdaten”
What do I want?
I Want to run a script thru all Rows of Table “CEL-Rohdaten”.
If the value of the Column “Event” is “ZD”, then copy the Data from Column “Equipment” into the Table “Event”.
So far I couldn’t figure how to do this.
I tried to run an Phyton auto script by “add new entry”. In this way I could grab the Informations I need. But it seems, that the script doesn’t run thru all rows. The Output list didn’t contain all specific values from the Table “CEL-Rohdaten”. It seems it stops after a few hundred of rows.
So I would like to run it manually with a “while” loop thru all rows.
I tried to grab every row by row this way:
while i < 30000:
  rows = base.list_rows(Tabelle, view_name='Default View', start=i, limit=i)
But how do I get the Value of the Column “Event” to make an “if” check?
Thx for help.