The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I have a scenario where I want to prevent a query from erroring out if a table is blank by stopping it from evaluation additional steps. Is there a way to do this?
Here's the background: a dataset is extracted from a system as one file type, but the query only works with files of a specific type, so I want to stop the query from running if the referenced file is NOT of the correct file type but leave the report blank instead of erroring out.
Solved! Go to Solution.
Multiple ways you can do this. If the file is one of many, but has an error, you can add a step to remove errors (right click on that column to see that option) before proceeding. If it is the only file, you can build a "try ... otherwise" in your query somewhere at the step level
step= try prevstep otherwise null (or some acceptable output)
Not sure what you'll need to do with your otherwise w/o seeing the rest of your query, but you can use it to substitute in dummy data that works, null, etc.
If this works for you, please mark it as solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingDAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingMultiple ways you can do this. If the file is one of many, but has an error, you can add a step to remove errors (right click on that column to see that option) before proceeding. If it is the only file, you can build a "try ... otherwise" in your query somewhere at the step level
step= try prevstep otherwise null (or some acceptable output)
Not sure what you'll need to do with your otherwise w/o seeing the rest of your query, but you can use it to substitute in dummy data that works, null, etc.
If this works for you, please mark it as solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.