Forum Discussion
Anonymous
5 years agoNot applicable
Add Average Function into Summarize
Hi Experts I want the average of a particular column in the following DAX Summary = filter ( Summarize (Input[Year],Input'[M Column],Average(Input[Addtion]/2), Input[Terms]), Input[Terms] = "BTM...
- 5 years ago
Hmm
can you please try to replace the above with the below?
(input[adition])/2, input[terms]),input[terms]
Jihwan_Kim
5 years agoSuper User
Hi,
please try the below.
Summary = filter ( Summarize (Input[Year],Input'[M Column], "@newcolumn", Average(Input[Addtion]/2), Input[Terms]), Input[Terms] = "BTMT")
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster.
- Anonymous5 years agoNot applicable
Hi Kim error from this point onwards (Input[Addtion]/2), Input[Terms]), Input[Terms]
- Jihwan_Kim5 years agoSuper User
Hmm
can you please try to replace the above with the below?
(input[adition])/2, input[terms]),input[terms]
- Anonymous5 years agoNot applicable
Nope...Kim