I am trying to combine Text values into One Column, based on whether or not there is a value to combine. I thought a SWITCH() function would work but I am struggling with the logic. Below is the output with a simplified formula.
SWITCH([Dimensions],
ISBLANK([Var3]),CONCATENATE([Var1],'" x ‘,[Var2]),
ISBLANK([Var4]),CONCATENATE([Var1],’" x ‘,[Var2],’" x ‘,[Var3]),
ISBLANK([Var5]),CONCATENATE([Var1],’" x ‘,[Var2],’" x ‘,[Var3],’" x '[Var4]),
CONCATENATE([Var1],'" x ‘,[Var2],’" x ‘,[Var3],’" x ‘[Var4],’" x ',[Var5])
)
If i am thinking correctly I should not be getting any output until values are present. If you could help I would greatly appreciate it. Thank you.
Unfortunatly when testing both IFS() and Nested IF() statements the column formula executions ends once the first operation is True. For accuracy this formula would need to keep checking even after the first operation is True.
IF(
[Dim1]>0.000,CONCATENATE([Dim1],'"'),
IF(
[Dim2]>0.000,CONCATENATE([Dim1],'" x ',[Dim2],'"'),
IF(
[Dim3]>0.000,CONCATENATE([Dim1],'" x ',[Dim2],'" x ',[Dim3],'"'),
IF(
[Dim4]>0.000,CONCATENATE([Dim1],'" x ',[Dim2],'" x ',[Dim3],'" x '[Dim4],'"'),
"Enter Dimensions"
)
)
)
)
This worked beautifully, Thank you. Only downside is if a user has a value in v1,v2,v3 and deletes the value in v2, It breaks but I can put other checks in to ensure i recieve the information needed. Your perspective is appreciated.