Forum

Fluff
@fluff
Eminent Member
Joined: Jul 31, 2020
Last seen: Apr 8, 2025
Topics: 0 / Replies: 36
Reply
RE: Auto Fill Text

How about =IF(OR(E3>EDATE(TODAY(),-6),E3=""),"","Send to QA")

1 year ago
Reply
RE: Auto Fill Text

That formula is pointing to itself & so creating a circular reference. In your original image the dates were in col F, now they are in col E s...

1 year ago
Reply
RE: Auto Fill Text

Get.cell does not recognise conditional formatting & even if it did you would need to save the workbook as macro enabled. The simplest thing is...

1 year ago
Reply
RE: MMULT with AGGREGATE?

How about =BYCOL(B13#,LAMBDA(bc,AGGREGATE(9,5,bc)))

1 year ago
Reply
RE: Vstack returning 0

Make sure the sheet with the formula is not between the sheets your referencing, otherwise you might get a circular reference.

2 years ago
Reply
RE: How can I make Column B a dynamic Array?

For B6 you can use =VSTACK(A2,DROP(SCAN(A2,E6#,LAMBDA(a,b,a-b)),-1))

2 years ago
Reply
RE: FILTER spill values giving #VALUE! error due to character length

Sorry for the delay in replying, I only got a notification today. The formula you are trying to use if only filtering columns A & B based on co...

3 years ago
Reply
RE: Multiple criteria XLOOKUP

Glad to help & thanks for the feedback

3 years ago
Reply
RE: FILTER spill values giving #VALUE! error due to character length

I think the problem is the Choose function. Just use =FILTER(Data!$A$2:$B$16,Data!$C$2:$C$16=$C$1)

3 years ago
Reply
RE: Dynamic range calculation line by line

Another option =MMULT(A1#,SEQUENCE(COLUMNS(A1#),,,0))

3 years ago
Reply
RE: Multiple criteria XLOOKUP

Another option =IF($N14="","",INDEX(SORT(FILTER($C$2:$C$17,($B$2:$B$17=$N14)*($G$2:$G$17<=O$13),"NA")),1))

3 years ago
Reply
RE: calculation question

Glad to help & thanks for the feedback.

3 years ago
Reply
RE: calculation question

How about =ROUNDUP(PRODUCT(I5:L5)/10,0)

3 years ago
Reply
RE: Run-Time error '6': Please let me guide for my vba error

The code is not responding because you are loading the listbox with an array of 1,000,000 rows. Try it like this instead. Private Sub UserForm...

4 years ago
Forum
Reply
RE: Run-Time error '6': Please let me guide for my vba error

Change this Dim i, X As Integer to Dim i As Long, X As Long

4 years ago
Forum
Page 1 / 3