Forum Discussion
DionTN
Helper II
4 years agoAdd average to selected column and row
I want to add a calculated value to the selected row in the selected column. I have this table: Now i want to add averages in this table. So in row 1 column 2 i need AVERAGE(calctable[bod...
davehus
Memorable Member
4 years agoHi DionTN ,
Have you a sanitised version of the raw data you can share?
Did I help you today? Please accept my solution and hit the Kudos button.
DionTN
Helper II
4 years agohttps://drive.google.com/file/d/1MBudlc3W-DeyjOsN5TUtxMIvyWmIrgRw/view?usp=sharing
davehus Usually i have a SQL connection, this is a export file. It needs to be a calculated field cause of changing filters. (CompanyID and appointment ID)
- Anonymous4 years agoNot applicable
Hi DionTN ,
As checked your shared csv file, there are mulitple fields there. Which value field do you want to get the average value? Could you please give some special examples to explain your final expected result? Thank you.
If you want to get the average values, you can refer the following links to get it.
Avg Dist = IF ( NOT ( ISBLANK ( 'Table'[Distance] ) ), CALCULATE ( AVERAGE ( 'Table'[Distance] ), ALLSELECTED ( 'Table' ) ) )