lrobbo314
Well-known Member
- Joined
- Jul 14, 2008
- Messages
- 3,957
- Office Version
- 365
- Platform
- Windows
Sorry if this is a cross post, but I think I might get a response in here since it is PowerPivot related.
I have a spreadsheet formula that looks like
Spreadsheet:
This works on the spreadsheet because I can do an array calulation with sumproduct.
evaluates to 41.55453251.
But, no matter what I do with SumX or any other combination of measure calculations, the best I can get is 13.52774926. Which, in the spreadsheet is the same result I get when I enter
Currently, the measure I have that is getting me 13.52774926 is the following
Where [Entries] = Column x + Column y
Like I said, I have tried SumX and a lot of other ways to try to get the 41.55453251 result, but I can't figure it out.
You would save me a lot of banging my head against the wall with any help.
Thanks.
I have a spreadsheet formula that looks like
Spreadsheet:
Code:
=(SQRT(E4)/SUMPRODUCT(SQRT($E$4:$E$13)))*Charts!$A$2
Code:
SUMPRODUCT(SQRT($E$4:$E$13))
But, no matter what I do with SumX or any other combination of measure calculations, the best I can get is 13.52774926. Which, in the spreadsheet is the same result I get when I enter
Code:
=SQRT(SUM(E4:E13))
Code:
t:=CALCULATE(sqrt([Entries]),ALLSELECTED(tbl_xTraffic))
Like I said, I have tried SumX and a lot of other ways to try to get the 41.55453251 result, but I can't figure it out.
You would save me a lot of banging my head against the wall with any help.
Thanks.