Forum Discussion
BFellner82
May 06, 2022Copper Contributor
Sum of data across multiple columns & rows based on Criteria
I have a data set that ranges across multiple rows and columns. I am building a nested formula and looking to sum QTY based on multiple criteria in one part of it. I tried sumifs, however, that doe...
- Jun 07, 2022
I was able to fix this issue by supplying the site name in the url and not in the GetFolderByServerRelativeUrl.
So instead of
https://test.com/_api/Web/GetFolderByServerRelativeUrl('/sitename/Shared%20Documents')/Files/Add(url='TestPdf.pdf', overwrite=true)
use
https://test.com/sitename/_api/Web/GetFolderByServerRelativeUrl('/Shared%20Documents')/Files/Add(url='TestPdf.pdf', overwrite=true)
HansVogelaar
May 06, 2022MVP
Try
=SUMPRODUCT('PROD&DMD'!$G$4:$AF$2099, ('PROD&DMD'!$A$4:$A$2099=$A4)*('PROD&DMD'!$G$2:$AF$2=$M4)
- BFellner82May 09, 2022Copper Contributor
HansVogelaar This worked perfectly! Thank you!
- nmpwyndAug 16, 2023Copper ContributorOMG I didn't think this was possible! you have saved me hours of changing my data structure - THANK YOU!