Hi,
I am working on a calculation-intensive app and the architecture of the app simply is for a (sign up/login not implemented) user to fill a form, have the input details stored in a datatype(Inputs). Some calculations happens in the background which results in some other data type (Key Findings).
Data types for InputsData types for Key Findings
So here’s my problem. On the Key Findings page, there’s an option to “Show Details” which requires doing some calculations with the Inputs data type and storing the calculations in a new Thing with the data type of Efficiency Details.
Data types for Efficiency Details
Upon research, I discovered that I can access database-stored Inputs using Current User and then adding Inputs as a data type field under User data type so I can access the values.
Empty User table because I didn’t implement sign up/login but noticed the column for Inputs
But that is failing because when I try to do the calculations with Input Fields, I get 0 as the value stored in my database.
Here’s the result of all the calculations as 0
Upon further research, someone mentioned that the problem could be my privacy rules. I made all the data types public but I still get 0 for the values of the Efficiency Details.
Another option I’ve considered is to just do the calculation in the dynamic data text. It works but I worry that I am not doing it right to cover all use cases and avoid one user getting the details of another user.
I really hope this was easy to follow. I’d appreciate any help I can receive. Thank you.