The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I need an average of two columns from two different tables. I have created an average of a column name Score from Table CSAT and an average of a column name CSAT from Table MDA Sheet.
Average SAT CW = AVERAGE(CSAT[Score])
Average SAT CMS = AVERAGE('MDA Sheet'[CSAT])
I do not want to sum of average but the combined average of both columns or if we can get average by those two measures will work
@Jihwan_Kim @ChrisMendoza @amitchandak @AllisonKennedy @Greg_Deckler
Solved! Go to Solution.
@saud968 , few ways, based on what you need
Average SAT CW = (AVERAGE(CSAT[Score]) + AVERAGE('MDA Sheet'[CSAT]))/2
or like
Averagex(Union(all(CSAT[Score]), all('MDA Sheet'[CSAT]) ), [Score])
@saud968 , few ways, based on what you need
Average SAT CW = (AVERAGE(CSAT[Score]) + AVERAGE('MDA Sheet'[CSAT]))/2
or like
Averagex(Union(all(CSAT[Score]), all('MDA Sheet'[CSAT]) ), [Score])
@amitchandak THank you for the quick response -
(AVERAGE(CSAT[Score]) + AVERAGE('MDA Sheet'[CSAT]))/2 this one worked out
User | Count |
---|---|
65 | |
60 | |
55 | |
54 | |
31 |
User | Count |
---|---|
180 | |
88 | |
70 | |
46 | |
46 |