I'm getting an error using Coalesce with Switch - what is wrong here? (No gallery to show if dropdowncode value is blank)
Coalesce(Switch(DropdownCodes.SelectedText.Value, "La 111_T", TABLELA111T, "La 111", TABLELA111)"",))
Thanks!

I'm getting an error using Coalesce with Switch - what is wrong here? (No gallery to show if dropdowncode value is blank)
Coalesce(Switch(DropdownCodes.SelectedText.Value, "La 111_T", TABLELA111T, "La 111", TABLELA111)"",))
Thanks!
I would need more information to supply a helpful answer but some of the values highlighted in red are not the proper syntax for the function Coalesce or Switch
This would likely be a valid statement but I have no idea what it does until you supply more context.
Coalesce(
Switch(
DropdownCodes.SelectedText.Value,
"La 111_T",
TABLELA111T,
"La 111",
TABLELA111)
)
)
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."