Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now
I am an absolute newbie to M, and I am currently playing around with simple code snippets to understand the syntax of the language. Below is my code. I have 3 input variables (product price, qantity sold and product name) and I want to output all three of them (multiply product price with qantity and display the product name).
let
blue_shirt_price = 25,
blue_shirt_qty_sold = 10,
product_name = "Blue Shirt"
in
blue_shirt_price * blue_shirt_qty_sold & product_name
This is the error message I am getting:
An error occurred in the ‘’ query. Expression.Error: We cannot apply operator & to types Number and Text.
Details:
Operator=&
Left=250
Right=Blue Shirt
I couldn't figure out how to properly add my string variable to the IN block.
Any help is highly appreciated. Thanks!
Solved! Go to Solution.
let
blue_shirt_price = 25,
blue_shirt_qty_sold = 10,
product_name = "Blue Shirt"
in
Text.From(blue_shirt_price * blue_shirt_qty_sold) & product_name
let
blue_shirt_price = 25,
blue_shirt_qty_sold = 10,
product_name = "Blue Shirt"
in
Text.From(blue_shirt_price * blue_shirt_qty_sold) & product_name
I am an absolute newbie to M, and I am currently playing around with simple code snippets to understand the syntax of the language. Below is my code. I have 3 input variables (product price, qantity sold and product name) and I want to output all three of them (multiply product price with qantity and display the product name).
let
blue_shirt_price = 25,
blue_shirt_qty_sold = 10,
product_name = "Blue Shirt"
in
blue_shirt_price * blue_shirt_qty_sold & product_name
This is the error message I am getting:
An error occurred in the ‘’ query. Expression.Error: We cannot apply operator & to types Number and Text.
Details:
Operator=&
Left=250
Right=Blue Shirt
I couldn't figure out how to properly add my string variable to the IN block.
Any help is highly appreciated. Thanks!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 44 | |
| 44 | |
| 19 | |
| 19 |
| User | Count |
|---|---|
| 72 | |
| 70 | |
| 34 | |
| 33 | |
| 31 |