Changing initial value based on view

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 Solved
0 3 749
  • UX
1 ACCEPTED SOLUTION

IF(
CONTEXT("VIEW") = "My Action",
"Me", "")

View solution in original post

3 REPLIES 3

IF(
CONTEXT("VIEW") = "My Action",
"Me", "")

Amazing thank you!

Top Labels in this Space