Hey guys!! Wondering if I can get some assistance.
I have a Make.com API that writes a list of data to a big table in bulk, say 50 rows at a time. Some time in the future, I have that same user export the same data again plus or minus rows of changed data, lets say this time they export 48 rows of data to a DIFFERENT New table which I call “The Working Table”, I want glide to look up the differences between the Original Data and the “The Working Table” and give the user the ability to update the old data with the new data, which we will call ‘Merge Changes’. I am running into a roadblock where I cannot have big tables display any of the boolean or computed data at all. I have a boolean setup that looks for changes in and if - else type setup, but I cannot seem to use that if-else for anything good. I’ve tried to make my working table a Glide Table, and a Big Table, But they don’t talk to each other properly. Reason I need a big table is because the dataset will be large.
maybe there is a better way to do this all together? please help :D, the use case is parts and part numbers, prices etc… that get updated in an external application which pushes new changes to the API in Make, and I need to reconcile these changes to the user inside the app.
I need it to: Make changes if there are new changes on the new data table, delete lines from the parts order if they are deleted on the new data table, and add new parts if they are added to the new data table. It is not optional to delete all lines, and write new lines as there is some data that must stay inside glide, that doesn’t come from the outside source (77 columns of data, 50 or so come from outside source, the rest are edited within glide)
Thanks in advance, I know you guys have crossed this bridge before
I can’t even sort a table by my boolean of “Changes Required:TRUE” Frustrating at this point