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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have a dataset with an inventory of products reported in dozens and I want to convert it to eaches upon import without creating a new column. Can anyone help?
Solved! Go to Solution.
Select your column and then add a "Multiplied Column" step. You will find this in the Transform tab under "Standard" operations. In M code, it looks like this:
#"Multiplied Column" = Table.TransformColumns(#"PreviousStep", {{"Column Name", each List.Product({_, 12}), Int64.Type}})
Select your column and then add a "Multiplied Column" step. You will find this in the Transform tab under "Standard" operations. In M code, it looks like this:
#"Multiplied Column" = Table.TransformColumns(#"PreviousStep", {{"Column Name", each List.Product({_, 12}), Int64.Type}})
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 36 | |
| 34 | |
| 31 | |
| 27 |
| User | Count |
|---|---|
| 136 | |
| 103 | |
| 67 | |
| 65 | |
| 56 |