Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: _XLFN ERROR Appears in front of a function

It is the version. If Excel 2016 has the problem, I'd guess you are using a function that is restricted to subscription versions/Excel 2019. Why don't...

6 years ago
Reply
RE: A Sent Status of Email

It's never really a good idea to change the defaults from whatever the user has set, since if your macro fails for any reason, you will have messed up...

6 years ago
Forum
Reply
RE: consolidating the data in single cell

Sunny has already given you a great answer, but since I'd done it anyway, and in case your data set isn't sorted, you could also try this: Sub...

6 years ago
Reply
RE: Trouble with Count If formula

It looks like you just need SUMIFS: =SUMIFS($B:$B,$D:$D, "Yes", $C:$C, ">="&A2, $C:$C, "<"&A3 )

6 years ago
Reply
RE: consolidating the data in single cell

Which version of 2013? If it's Professional Plus, or Excel standalone, you should have Power Pivot. If it's a different version, you cannot use it and...

6 years ago
Reply
RE: consolidating the data in single cell

Depending on what version of Power Pivot you have, you may be able to use CONCATENATEX for this:

6 years ago
Reply
RE: A Sent Status of Email

The Text property just returns a String, which doesn't have formatting. You'd have to parse the Characters one by one and add the relevant HTML or RTF...

6 years ago
Forum
Reply
RE: A Sent Status of Email

You could use a class, declare a MailItem object WithEvents and handle its Close event, checking its Sent status then, as long as you can set a refere...

6 years ago
Forum
Reply
RE: VLOOKUP using 4 tables

Probably something like: =IFERROR(VLOOKUP($BC$1;$CD$3:$CF$14;2;FALSE)&" - "&VLOOKUP($BC$1;$CD$3:$CF$14;3;FALSE);IFERROR(VLOOKUP($BC$1;...

6 years ago
Reply
RE: Slicers - changing the font

It seems to be a limitation in Mac Excel (I"d call it a bug).

6 years ago
Reply
RE: Help with splitting macros - doesn't keep column format

This should be the same effect as your original code but pasting column widths too: Sub SplitIntoSeperateFiles() Dim OutName As String OutName...

6 years ago
Forum
Reply
RE: IF Function Query - Is this appropriate?

It sounds like you just need to change the formula to: =IF(C4=”Staff costs (direct and external)”,M4 *0.15,0)

6 years ago
Reply
RE: Excel: Creating a list of unique cells based on multiple criteria including a date range.

It sounds to me like a pivot table would be ideal for this. Or Power Query, if you have it.

6 years ago
Reply
RE: Help with splitting macros - doesn't keep column format

Try modifying the copy/paste section to this: With FilterRange .AutoFilter Field:=NameCol, Criteria1:=UniqueNames(Index) .SpecialCells(xlCellT...

6 years ago
Forum
Reply
RE: count in same row of different column ????

You could use something like this: =SUMPRODUCT(0+(INDEX(B2:E2,1,N(IF(1,{1,4})))="Y")) which will check the 1st and 4th columns of the ...

6 years ago
Page 52 / 56