Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: Detect color change

Changing the colour of a cell does not trigger any events that you can respond to. If you can, you would be far better off using an additional column/...

2 years ago
Forum
Reply
RE: Count unique values in filtered column of a table

That's exactly the approach the formula I suggested uses, but without the helper column. If the helper column is OK, it's probably a better option. 🙂

2 years ago
Reply
RE: Count unique values in filtered column of a table

You could try something like: =COUNTA(UNIQUE(FILTER(Table1[Column1],SUBTOTAL(103,OFFSET(Table1[Column11],ROW(Table1[Column1])-MIN(ROW(Table1[C...

2 years ago
Reply
RE: Add ".xlsb" to existing Macro - IF Statement

Your code checks the last 52 characters to see if they match "xlsm" (which they can't), then the last 50 characters to see if they match "xlsb" (again...

2 years ago
Forum
Reply
RE: Convert 2 column table with duplicate values in column 1 to table with multiple columns and unique values in column 1

HI Alan, That's odd - I just tried it again and it worked as posted (64bit 365). Would you mind testing this slight alteration? let Source = Ex...

2 years ago
Forum
Reply
RE: Help with error and vba code

Look at the controls on the form - do any of them look right to you? They all look distorted and they appear much bigger than their properties suggest...

2 years ago
Forum
Reply
RE: Convert 2 column table with duplicate values in column 1 to table with multiple columns and unique values in column 1

Yes, you can use something like this: let Source = Excel.CurrentWorkbook(){[Name="Table2"]}[Content], #"Grouped Rows" = Table.Group(Sourc...

2 years ago
Forum
Reply
RE: Help with error and vba code

It sounds (and looks) to me as though there may be some corruption in your workbook. I'd suggest rebuilding it.

2 years ago
Forum
Reply
RE: Help with error and vba code

How big is your monitor? Your userform is over 6k pixels wide, which makes it extremely hard to use!

2 years ago
Forum
Reply
RE: Rename File Based on Cell Values

You can add the path in: Name ActiveSheet.Range("C2") & ActiveSheet.Range("C4") As _ ActiveSheet.Range("C2") & ActiveSheet.Range("C6")

2 years ago
Forum
Reply
RE: Using xlookup when the lookup array is a spilled array from a vstack formula

You can also use INDEX supplying 0 as the row number argument - for example: =INDEX(I1#,0,3) returns the third column of the spilled array start...

2 years ago
Reply
RE: Simple string body to display in an email

Or use & consistently rather than + for concatenation. 🙂

2 years ago
Forum
Reply
RE: Search for Merged cells and unmerge them

You can unmerge all the cells in the column at once. If you need to specifically find merged cells, unmerge them and then populate them with the origi...

2 years ago
Reply
RE: VBA Emails hard code sheet & template name

Set xMItem = xOTApp.CreateItem(0) should be: Set xMItem = xOTApp.CreateItemFromTemplate(mailTemplate) I suspect (hope) Outlook will not ...

2 years ago
Forum
Reply
RE: Using GETPIVOTDATA in a Pivot Table

Replace your current GETPIVOTDATA(...) section in the relevant formula(s) with IFERROR(GETPIVOTDATA(...),0)

2 years ago
Page 14 / 56