Source: https://www.ablebits.com/office-addins-blog/custom-excel-number-format/#decimal-places
Converting a number to MILLIONS in currency without dividing the number by 1000000.
Our technical scratch pad
Source: https://www.ablebits.com/office-addins-blog/custom-excel-number-format/#decimal-places
Converting a number to MILLIONS in currency without dividing the number by 1000000.
Here is the formula
=LET(dataOriginal,A1:C100,
data,FILTER(dataOriginal,BYROW(dataOriginal,LAMBDA(row,SUM(--(row<>""))>0))),
firstRow,MAP(TAKE(data,1),LAMBDA(x,ISNUMBER(SEARCH("~*",x)))),
BYROW(MAP(DROP(data,1),LAMBDA(x,NOT(ISBLANK(x)))),LAMBDA(array, IF(SUMPRODUCT(--(array)*--(firstRow))=SUMPRODUCT(--(firstRow)),"OK","REQUIRED COL VALUE MISSING")))
)