justjigga
How can I use summarize to add the sum of a calculated column in a table footer?
I am using
getStateUsing
to calculate the number of hours a client uses for a specific period of time. I would like to add the sum of this value to the table footer.
I think I'm missing something. The error I get is
2 replies
Use ImportAction to import records and related records
I am using ImportAction to import a list of registrants and addresses. Each registrant can have a physical address and mailing address. The csv file looks something like:
firstname,lastname,phys_address,phys_city,phys_state,mail_address_mail_city,mail_state,yob
.
My tables look like:
firstname,lastname,phys_address_id,mail_address_id,yob
The documentation shows how to use relationships for lookups of existing relationships but I'm not certain how to create new ones. During the import process, I would like to create new addresses if the registrant does not exist, or update the addresses if the registrant does exist.
I know I can do this without using ImportAction but I like the ability to map columns during the import process.
Thanks!3 replies