This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
while i am excuting the Power query the list does not contain no records in Power Bi .At that time it showing the " the table is empty "i want to show false.But i am getting error.Can you please help me how to make it as false.
Solved! Go to Solution.
@jayendra,
Add a new blank query in Power BI Desktop, then create a function in the Advanced Editor of the query with the List.IsEmpty function to check the list, when the list is empty, return false, otherwise expand the list. Below is an example for your reference.
let export = (TextName as text, listname as list) => let name = TextName, Table = Table.FromList(listname, Splitter.SplitByNothing(), null, null, ExtraValues.Error), result= if List.IsEmpty(listname) then name else Table in result in export
Regards,
@jayendra,
Add a new blank query in Power BI Desktop, then create a function in the Advanced Editor of the query with the List.IsEmpty function to check the list, when the list is empty, return false, otherwise expand the list. Below is an example for your reference.
let export = (TextName as text, listname as list) => let name = TextName, Table = Table.FromList(listname, Splitter.SplitByNothing(), null, null, ExtraValues.Error), result= if List.IsEmpty(listname) then name else Table in result in export
Regards,
Hi,
Could you try with Column = IF(ISBLANK(table[columntocheck]);"False";table[columntocheck])
Regards,
Salvador.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 23 | |
| 21 | |
| 18 | |
| 17 |
| User | Count |
|---|---|
| 63 | |
| 35 | |
| 34 | |
| 24 | |
| 23 |