I use a single value for math dates that I take from the user table with a specific user column, the problem is that when changing users the single value is not dynamic, is my method wrong?
user lesta
user agung
I use a single value for math dates that I take from the user table with a specific user column, the problem is that when changing users the single value is not dynamic, is my method wrong?
user lesta
user agung
Use template column instead and select from user profile?
Also, user specific columns in the user table don’t make a lot of sense except in a few rare cases. Each user has their own row. They are not sharing the same row, so a user specific column would not be necessary. Only use user specific columns if multiple users need to have unique values in the same column of the same row.
I use a specific user for dates which will filter the date as well as filter the big number component so that the number results are dynamic. Is it possible if I don’t use specific uses?
I have used the template, but when using the ITE column the template column is not readable
The thing here is you might be able to specify that column straight from your User profiles table, if your “filter” dates are writing to the signed-in user’s row.
Check thĂs screen to see if it’s built on top of the users table, and filtered to the signed-in user’s row.
![image|690x428](upload://jR34y2fUPiZlqDtsCt1uy58jFLc.jpegis
Then, you can use the method Hassan and Jeff were referring to, and as you’re writing to the signed-in user’s row, no “user-specific” column is needed, because nobody is interacting within the same cell.
You using single value > from start > 1 looks like the wrong thing to do though.