Table Functions
get_column_value()
get_column_value(row, column_name, default_value=None, is_clean=False)Name
Type
Description
table = tables_dict.get("INVOICE_TABLE")
if table:
for row in table["rows"]:
desc = get_column_value(row, "DESCRIPTION", "")
qty = get_column_value(row, "QUANTITY", "0")
price = get_column_value(row, "UNIT_PRICE", "0")set_column_value()
set_column_date_value()
Name
Type
Description
set_column_amount_value()
add_table_column()
Name
Type
Description
remove_rows_from_table()
Name
Type
Description
remove_all_rows_except_one_from_table()
Name
Type
Description
delete_tables()
restore_tables()
Common Patterns
Calculate column sum
Filter empty rows
Compute column from other columns
Last updated
Was this helpful?