Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
Hi Everyone
I have this DAX formula in order to create one new Table:
SUMMARIZE(fFLX,fFLX[CategoriaBDG],fFLX[G/L],fFLX[Period], "QTY", SUM(fFLX[Quantity]))
Thanks for the support!
=
CALCULATETABLE(
SUMMARIZECOLUMNS(
fFLX[CategoriaBDG],
fFLX[G/L],
fFLX[Period],
"QTY", SUM( fFLX[Quantity] )
),
fFLX[G/L] IN { 1, 2, 3 }
)
Expertise = List.Accumulate( {Days as from Today}, {Skills and Knowledge}, (Current, Everyday) => Current & Day.LeanAndPractise(Everyday) ) |
Hi @MarcoMizz
Something like this
=
SUMMARIZE (
FILTER ( fFLX, fFLX[CategoriaBDG] IN { "Value1", "Value2", "Value3" } ),
fFLX[CategoriaBDG],
fFLX[G/L],
fFLX[Period],
"QTY", SUM ( fFLX[Quantity] )
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.