Hi there @Jason_Luna
and Welcome to the Community
!
Is this what you were looking for
?
I used a SwitchIf() formula instead of If() 
SwitchIf(thisRow.Size="Large",56,thisRow.Size="Medium",36,thisRow.Size="Small",16)
SwitchIf()
tend to be more appropriated in those cases as you don’t need to precise the otherwise
part of the formula.
Here, with in my SwitchIf()
formula in the Duration
field, it just says that :
- if the
Size
mentioned in this row is equal at “Large”, then put 56 here
- if the
Size
mentioned in this row is equal at “Medium”, then put 36 here
- if the
Size
mentioned in this row is equal at “Small”, then put 16 here
Note that because the Duration
field is a formatted as a Duration
type of field (where I set the Precision
to Days
, I didn’t need to precise what the 56
, 36
and 16
were, they were automatically put as days
.
With an If()
you would probably need to nest them and have a formula looking like this :
If(
thisRow.Size="Large",56,
If(thisRow.Size="Medium",36,
If(thisRow.Size="Small",16,"")
))
Which says this time :
if the Size
mentioned in this row is equal at “Large”, then put 56 here, otherwise, if the Size
mentioned in this row is equal at “Medium”, then put 36 here, otherwise, if the Size
mentioned in this row is equal at “Small”, then put 16 here, otherwise, Blank
.
