User Profile
Harun24HR
Bronze Contributor
Joined Nov 07, 2020
User Widgets
Recent Discussions
Re: Cell drop list of workbook sheets
Use the following formula to a name manager then use that name to data validation list. =TOCOL(TEXTAFTER(GET.WORKBOOK(1)&T(NOW()),"]")) See the below article for more details. https://techcommunity.microsoft.com/discussions/excelgeneral/rename-cell-to-various-different-sheet-titles/4430814/replies/443156040Views0likes0CommentsRe: Using a combination of IF Statement and LET function
Do you mean date range to ignore or just those two dates? To ignore two date range try- =IF(AND(A2>=$G$3,A2<=$G$2),"Ignore",LET(x,"Your formula here",x)) To ignore only those two date, try- =IF(OR(A2=$G$2,A2=$G$3),"Ignore",LET(x,"Your formula here",x))21Views0likes0CommentsRe: name manager rejecting lambdas
What is LET(...) here? May be issue with LET functions parameters. Below formula works fine with name manager. For a simple calculation I have just used SUM() inside LET() function. =LAMBDA(array,slice1,[index1],[return_index_slice2],[index2],[return_index],[if_not_found],[logic],[headers],[function],LET(x,array,y,slice1,SUM(x,y)))49Views0likes0CommentsRe: PivotBy or GroupBy
PIVOTBY() should work. Try- =PIVOTBY(Table1[slot],Table1[txNumber],Table1[numOfPrb],LAMBDA(x,ARRAYTOTEXT(UNIQUE(x))),0,0,,0) And using FILTER() function. =IFERROR(ARRAYTOTEXT(UNIQUE(FILTER(Table1[numOfPrb],(Table1[slot]=$L3)*(Table1[txNumber]=M$2)))),"")63Views0likes0CommentsRe: IFS Formula Help
XLOOKUP() function lookup_array and return_array must be same length. You mentioned only one cell E2 as return_array argument. So, amend it. Try- =IFS(K2="SCHOOL NAME",XLOOKUP(B2,B:B,E:E,""),AL2="SCHOOL CODE",XLOOKUP(B2,B:B,E:E,"")) Another point is, you are looking B2 cell content inside B column, so it will always return result from E2 cell. In that case you can just use- =IFERROR(IFS(K2="SCHOOL NAME",E2,AL2="SCHOOL CODE",E2),"") But what is your actual goal? Attach a sample file or post few sample data and desired outcome.86Views0likes0Comments
Recent Blog Articles
No content to show