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!
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}})
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 |
|---|---|
| 58 | |
| 57 | |
| 42 | |
| 17 | |
| 17 |
| User | Count |
|---|---|
| 113 | |
| 108 | |
| 38 | |
| 35 | |
| 26 |