Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi
Is there a way to return zero when [order number] isn't present in FT_table?
Here is my query:
(let currentOrder = [order number] in Table.SelectRows(FT_Table, each [order number] = currentOrder)){0}[SupplierID]
BR
Lotte
Solved! Go to Solution.
It's generally better to handle the errors rather than replace them.
Try this:
let
currentOrder = [order number],
filteredTable = Table.SelectRows(FT_Table, each [order number] = currentOrder))
in
try filteredTable{0}[SupplierID] otherwise 0
Found a solution - replace error...
It's generally better to handle the errors rather than replace them.
Try this:
let
currentOrder = [order number],
filteredTable = Table.SelectRows(FT_Table, each [order number] = currentOrder))
in
try filteredTable{0}[SupplierID] otherwise 0
Thank you so much 😊
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 15 | |
| 11 | |
| 11 | |
| 8 | |
| 6 |