Forum Discussion
jaolvera
Jul 14, 2023Brass Contributor
Formula assistance
Hello,
I was wondering if there was formula I could use that would essentially list out any person where the calREDIE DI# column is blank (Column Au would blank), and fill each row (Photo below that ) by last name first name and date of birth in each cell combined. example " Doe, John 7/7/1924"
Yes, edit the second argument to FILTER:
=LET( missing, FILTER(Linelist!B2:D4, (Linelist!AU2:AU4 = "")*(LineList!B2:B4<>"")), TAKE(missing, , 1) & ", " & CHOOSECOLS(missing, 2) & " " & TEXT(TAKE(missing, , -1), "mm/dd/yyyy") )
- Riny_van_EekelenPlatinum Contributor
jaolvera If you have Excel365 you could try something like this:
=BYROW(FILTER(B2:D5,AU2:AU5<>""),LAMBDA(a,TEXTJOIN(",",,a)))
- jaolveraBrass Contributorflexyourdata I tried applying the formula that you used on my last question with this one, since its the same scenario but I couldnt get it to work, ar you able to assist?
- flexyourdataIron Contributor
Try a variant of this (adjust the ranges):
=LET( missing, FILTER(B2:D5, AU2:AU5 = ""), TAKE(missing, , 1) & ", " & CHOOSECOLS(missing, 2) & " " & TEXT(TAKE(missing, , -1), "mm/dd/yyyy") )