Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi all,
I can't quite work out why I'm getting the "Token Equal expected" error.
(let PO# = [POnumber] in Table.SelectRows (purchaseDocuments, each [POnumber] = PO#)){0} [amount]
The "Merged" table is where I'm creating the the custom column, and I'm trying to get "PO#" to look up the "POnumber" in the "purchaseDocuments" table and return the "amount" value from the "purchaseDocuments" table for the corresponding "PO#" in the "Merged" table.
Solved! Go to Solution.
Put following formula in custom column box
= try purchaseDocuments{[POnumber=[#"PO#"]]}[amount] otherwise null
👍 It's been a pleasure to help you | Help Hours: 11 AM to 9 PM (UTC+05:30)
How to get your questions answered quickly -- How to provide sample data
Use this
let
#"PO#" = [POnumber]
in
Table.SelectRows (purchaseDocuments, each [POnumber] = #"PO#"){0} [amount]
👍 It's been a pleasure to help you | Help Hours: 11 AM to 9 PM (UTC+05:30)
How to get your questions answered quickly -- How to provide sample data
Hi Vijay,
The formula works, but I get an error in the resulting created column. What have I missed?
The "Merged" table is where I'm creating the the custom column, and I'm trying to get "PO#" to look up the "POnumber" in the "purchaseDocuments" table and return the "amount" value from the "purchaseDocuments" table for the corresponding "PO#" in the "Merged" table.
Both tables have been refreshed.
Put following formula in custom column box
= try purchaseDocuments{[POnumber=[#"PO#"]]}[amount] otherwise null
👍 It's been a pleasure to help you | Help Hours: 11 AM to 9 PM (UTC+05:30)
How to get your questions answered quickly -- How to provide sample data
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
13 | |
13 | |
10 | |
8 | |
7 |
User | Count |
---|---|
17 | |
10 | |
7 | |
7 | |
6 |