You better open a new thread and enclose with a new file, clearly stated what you have? and, what you want?
Or,
Try to see the below example for the Offset + Maxifs function:
Regards
Try to use MID and FIND functions as in:
1] Case #1: no space between strings
In F9, formula copied down:
=MID(LEFT(B9,LEN(B9)-3),1-LOOKUP(1,-FIND("C",LEFT(B9,LEN(B9)-3),ROW($1:$99))),99)
2] Case #2: with space between strings
In F22, formula copied down...
Try to use a simply Sumif function in this way
In D2, enter formula and copied down:
=SUMIF(E$2:AL$500,B2,F$2:AM$500)
Remark: Try to extend the maximum range area, to suit with your actual data area.
1] It is the original lookup range:
2] If the row 3 and row 4 exchange the order, and become>>
Then, your above formula will give wrong result
Regards
Bosco
1] Your formula:
=INDEX($A$2:$A$7;AGGREGATE(15;6;(ROW($E$2:$E$7)-1)*(SEARCH($E$2:$E$7;E11)^0);1))
2] Better using "/" instead of "*"+"^0"
Formula result giving same and a bit shorter
=INDEX($A$2:$A$7;AGGREGATE(15;6;ROW($E$2:$E$7)-1/SEARCH($E$2:$E$7;E11);1))
Regards
Try to change your formula:
From this >>
=IF.ERROR(@INDEX(T$2:T$400;AGGREGATE(15;6;(ROW REF($T$2:$T$400)-ROW REF($T$2)+1)/($U$2 :$U$400<>"");ROWS(T1:$T$1)));"")
Into this >>
=IF.ERROR(@INDEX(T$2:T$400;AGGREGATE(15;6;(ROW REF($T$2:$T$400)-ROW...
A long formula for the old Excel version.
1] In A8, formula copied down:
=IFERROR(IFERROR(INDEX('Appollo For Natural Oils'!$A$1:$A$1000,AGGREGATE(15,6,ROW($A$1:$A$1000)/(MATCH('Appollo For Natural Oils'!$A$1:$A$1000&'Appollo For Natural Oils'!$D$1:$D$1000,'Appollo For Natural...
And,
you can use VLOOKUP function instead of INDEX+MATCH in your example.
In cell F5, formula copied down:
=IFERROR(E5-VLOOKUP(D5,A:B,2,0),"not applicable")
Or,
=IFERROR(E5-VLOOKUP(D5,A:B,2,0),"")
Regards
You need to set up a "Resource Allocation Table" from Sheet1 to sheet6
So,
In "Sheet1" the below formulas copied down:
[G3] =IFERROR(@FILTERXML("<a><b>"&SUBSTITUTE(TEXTJOIN("+",,C$3:C$164),"+","</b><b>")&"</b></a>","//b["&ROW(A1)&"]"),"")
In "Sheet1" the below formula copied across right...
@Hany ali
1] Please be note the forum rule: one post one question,
2] Being for the formula to extract unique names from all Sheets of the file, the revised Excel 2019 formula will be:
In B2, formula copied down...
Convert amount to lacs or thousand
Maybe something like this:
1] In A2, enter your amount
2] In B2, enter formula:
=FILTERXML(WEBSERVICE("https://excelkida.com/xml/amount-to-word?style=ind&lang=en&num="&A2),"/data")