Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: Jun 9, 2026
Topics: 0 / Replies: 841
Reply
RE: Dynamically Select the First and Last Column

That's not really the point. All you need to do (here and in other forums) is add links to any cross-posts. Nobody is saying you can't do it.

2 years ago
Forum
Reply
Reply
RE: Trim text in Power Query

That was the formula to put in when adding a calculated column. The full code for the step would be: = Table.AddColumn(Source, "Fund", each Text.Tr...

2 years ago
Forum
Reply
RE: Trim text in Power Query

I figured it was risky to assume the data would always have that space before the bracket. 😉 Real data is rarely that neat...

2 years ago
Forum
Reply
RE: Trim text in Power Query

If the currency is always the last thing in brackets and you want everything prior to that, you can extract everything before the last delimiter with ...

2 years ago
Forum
Reply
RE: VBA Editor changed?

As ong as you open the files in the desktop version, the VBA will work. If you have it open in the online version of excel (which is also what teams u...

2 years ago
Forum
Reply
RE: VBA Editor changed?

I suspect you've unchecked the 'Default to full module view' option in Tools - Options - Editor tab, Window Settings section? Your second question ...

2 years ago
Forum
Reply
RE: Dynamic array - splitting single column, replicate others

Perhaps something like this - just amend the D1# to whatever your spilled range should be: =LET(rng,D1#, numRows,SEQUENCE(ROWS(rng)), a,REDUCE("",n...

2 years ago
Reply
RE: UDF - Correct result but #VALUE in Cell

For the green count: =SUMPRODUCT(--(O13:s13/O$7:S$7>=0.75)) For the red (first): =SUMPRODUCT(--(O13:s13/O$7:S$<0.5)) For the balance...

2 years ago
Forum
Reply
RE: UDF - Correct result but #VALUE in Cell

If you can give an example of the criteria used for the conditional formatting, I will see what I can do.

2 years ago
Forum
Reply
RE: UDF - Correct result but #VALUE in Cell

No, what I'm suggesting is using a regular COUNTIF(S) function without any code. If you can apply the same criteria that are used to colour the cells,...

2 years ago
Forum
Reply
RE: UDF - Correct result but #VALUE in Cell

Are the cells coloured through conditional formatting, or do they have colours applied to them manually?

2 years ago
Forum
Reply
RE: UDF - Correct result but #VALUE in Cell

You can't use DisplayFormat in a function called from a cell. The easiest solution is usually to use something like COUNTIF(S) together with whatever ...

2 years ago
Forum
Reply
RE: UDF - Correct result but #VALUE in Cell

I suspect your UDF does something that is not allowed for a function called from a sheet. If you post the code, we can probably tell you what.

2 years ago
Forum
Reply
RE: VBA to generate dynamic spilled formulas including XLOOKUP w/multiple criteria

You're putting VBA code inside a formula string, which won't work. I don't really understand the second loop as you are returning the same value to ev...

2 years ago
Forum
Page 4 / 57
0