@WarrenBelz wrote:
Hi @ShaneITAutomate ,
As below, but you also need to say what is in the columns - not sure on the last one, but try it.
ClearCollect(
colPrestartImageInspection,
AddColumns(
Filter(
colPrestartImageGallery,
Brakes = tbrakes.false,
Steering = tsteering.false
etc etc
),
"GalImageURL",Blank(),
"GalImageDetails",Blank(),
"GalImage",Blank()
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi warren thanks again for your help.
I dont think i explained it very well ill use some images and try to redefine my issue

Here on my first screen (its the question screen, its also a canvas with no forms)
i want the user to go through and select all the toggles, if one of the answers is no and the toggle is false, i wish to collect the name of the item and that the defect is false and add the three columns so that

on this screen the user can see on this gallery the items name and click on it be taken to another screen to take a picture for each false answer
if i use the code below i get several errors such as invalid number of arguments
this predicte is a literal value and name isnt recogonised
@WarrenBelz wrote:
Hi @ShaneITAutomate ,
As below, but you also need to say what is in the columns - not sure on the last one, but try it.
ClearCollect(
colPrestartImageInspection,
AddColumns(
Filter(
colPrestartImageGallery,
Brakes = tbrakes.false,
Steering = tsteering.false
etc etc
),
"GalImageURL",Blank(),
"GalImageDetails",Blank(),
"GalImage",Blank()
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
if i use the code below i get no errors however i dont get the name of the column (plus its not collecting the three columns for each non compliant ?
fyi (im using toggles to switch a dropdown because of the choice column of the datasource)
ClearCollect(
colPrestartImageInspection,
AddColumns(
Filter(
colLVPrestartInspection,
copybrakes.Selected.Value = "Non Compliant";
copysteer.Selected.Value = "Non Compliant";
copyseat.Selected.Value = "Non Compliant";
copytyres.Selected.Value = "Non Compliant"
),
"GalImageType","",
"GalImageURL","",
"GalImageDetails","",
"GalImage",""
))