I have a table Action with field "Player" that has a formula in the Initial Value. There is a UX (form) called "Action" that sits on top of this to add rows into the Action table.
I want to make another UX (form) called "My Action" that defaults the field "Player" to me, rather than using the formula. Is that possible?
I'm thinking along the lines of a formula that says
If current_view = "Action", use formula x, else set Player = "Me".
Solved! Go to Solution.
IF(
CONTEXT("VIEW") = "My Action",
"Me", "")
IF(
CONTEXT("VIEW") = "My Action",
"Me", "")
Amazing thank you!
User | Count |
---|---|
17 | |
11 | |
7 | |
5 | |
5 |