Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: Jun 10, 2026
Topics: 0 / Replies: 841
Reply
RE: Repeat column calculations after “n” blank cells and “n” rows

Oh yes. I hadn't spotted that the values in columns D:I depend on the values in columns J:S of the row above. I think this should fix the problem: ...

3 years ago
Reply
RE: Create a list of decimal numbers between values in two columns

I'd guess it's a floating point issue. You could also use Number.Round(([End]-[Start])*10+1,0) directly within the List.Numbers function.

3 years ago
Forum
Reply
RE: Repeat column calculations after “n” blank cells and “n” rows

I think this works: K19: =IF(ROW()<MATCH(K$7,$H:$H,0)+9,"",IF(MOD(ROW()-MATCH(K$7,$H:$H,0),91)<9,"",K$9/2)) and copy across and down.

3 years ago
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/...

3 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. 🙂

3 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...

3 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...

3 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...

3 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...

3 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...

3 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.

3 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!

3 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")

3 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...

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

Or use & consistently rather than + for concatenation. 🙂

3 years ago
Forum
Page 14 / 57
0