Forum Discussion
jbaisley
3 years agoHelper I
Multiply Values from Single Column
Hello folks, Hopfully, a simple one. I have column of odds by categories and location. The user can filter by category and location and I wan't to divide the remaining values together for a poole...
tamerj1
3 years agoCommunity Champion
Hi jbaisley
please try
=
PRODUCTX (
SELECTCOLUMNS (
SUMMARIZE ( 'Table', 'Table'[Location], 'Table'[Category] ),
"@Ratio", [Ratio]
),
1 / [@Ratio]
)Greg_Deckler
3 years agoCommunity Champion
tamerj1 I went down that path. The syntax is broken, can't pick [Ratio] out of a summarized column that doesn't include it. Also, PRODUCTX('Table',1/[Ratio]) is equivalent and that returns 1.75.