I have created a simple app. Basically, it inputs 4 excel files and outputs them into SQL tables. It works fine when I select all the 4 inputs. I am trying to add another feature which is that even if I select 1 file then it should run without giving any error. Can you suggest how it can be done?
Currently it throws an error like :
Solved! Go to Solution.
You can nest the File Browses under Check Boxes and set the check box to Collapse Group when Deselected. This will turn off the input.
Try this: Put your logic for the input file into a container. Use an action to update the ENABLE/DISABLE button with: IIF(isempty([#1]),'True','False').
If someone doesn't give you an input file, you can disable the container.
Cheers,
Mark
Hi Mark,
Thanks for your prompt reply. I was able to implement the solution.
Best,
Priyam
Thank you very much for your prompt reply. I was able to implement the solution to this.
Best,
Priyam
Hi Stephen,
I am still getting the error file is empty. This is how I have nested the boxes. Could you let me know what I am doing wrong? Thanks Anita
Thanks for this! Was what I needed to do for it to work