The recommendation doesn't work.
This again is what I have:
Documents library with 4 images. each image has the title of: Army, Airforce, Navy, Civilian
A custom list has a choice field of Army, Airforce, Navy, civilian.
On the canvas I have renamed the Choice field to VBranch.
If (Vbranch.Selected.Value = "Army", LOOKUP (Documents, TITLE = VBranch.Selected.Value).image,
Vbranch.Selected.Value = "AIrforce", LOOKUP (Documents, TITLE = VBranch.Selected.Value).image,
Vbranch.Selected.Value = "Navy", LOOKUP (Documents, TITLE = VBranch.Selected.Value).image
Vbranch.Selected.Value = "Civilian", LOOKUP (Documents, TITLE = VBranch.Selected.Value).image)
When I Do that I get and error that states "If has some invalid arguments.
When I try:
If (Vbranch.Selected.Value = "Army", LOOKUP (Documents, TITLE = VBranch.Selected.Value).'{Thumbnail}'.Large,
Vbranch.Selected.Value = "AIrforce", LOOKUP (Documents, TITLE = VBranch.Selected.Value).'{Thumbnail}'.Large,
Vbranch.Selected.Value = "Navy", LOOKUP (Documents, TITLE = VBranch.Selected.Value).'{Thumbnail}'.Large,
Vbranch.Selected.Value = "Civilian", LOOKUP (Documents, TITLE = VBranch.Selected.Value).'{Thumbnail}'.Large)
I get the same error.