Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: Power Query - Multiple Users Conundrum

Why do the users have to have their own individual files, rather than writing to one central file (or database, or List)? It's making everything a lot...

1 year ago
Forum
Reply
RE: Why is the "Edit" menu option missing from some of my Column headings in my Microsoft List?

I'd guess that was the Title column, which is a system column. You cannot change its data type, nor can you delete it.

1 year ago
Forum
Reply
RE: Table not keeping properties for new rows

You've got manual formatting applied to some cells (eg a light blue fill on the Jan sheet). You should remove that.

1 year ago
Reply
RE: Excel VBA - copy data to multiple lines

Try something like this: Sub data() Dim ws_Form As Worksheet Set ws_Form = Sheets("Form") Dim ws_Data As Worksheet Set ws_Data = Sheets("Data") Dim...

1 year ago
Forum
Reply
RE: Private Sub Worksheet_Change(ByVal Target As Range)

If you change cells in a Change event, you should always disable events while you do so to avoid recursion: Private Sub Worksheet_Change(ByVal Targ...

1 year ago
Forum
Reply
RE: Make chart data labels an image from the spreadsheet

Using the IMAGE function is not the same as inserting a picture on a sheet. You cannot select or name the picture as it is a function result, not a sh...

1 year ago
Reply
RE: Custom UI Ribbon and QAT in Personal macro book

Custom ribbons don't work for hidden normal workbooks (i.e. that don't have the IsAddin property set to True).

1 year ago
Forum
Reply
Reply
RE: Make chart data labels an image from the spreadsheet

I don't think you can link them. You can copy and paste the image from the sheet to use as the picture fill for a data point, but it's static. You cou...

1 year ago
Reply
RE: Outlook Save Specific Attachment - Replace KILL with a code to Replace/Overwrite

My suspicion would be that this code is not the cause of the problem. It could only delete the file when you run it, and it will only delete the file ...

1 year ago
Forum
Reply
RE: Outlook Save Specific Attachment - Replace KILL with a code to Replace/Overwrite

I can't see anything wrong with the revised code (though I'm surprised you're saving it locally given what you describe) - if the file failed to save ...

1 year ago
Forum
Reply
RE: Cell counting by color

I disagree. It will not work properly in a UDF - Microsoft even states that in the documentation.

1 year ago
Forum
Reply
RE: Calculating the number of days between 2 dates based on another 2 dates

OK, there are almost certainly simpler formulas, but I think this works in G15 and copied across and down: =LET(firststart,MAX($B15,G$12),firstend,...

1 year ago
Reply
RE: Calculating the number of days between 2 dates based on another 2 dates

Which version of Excel do you have? It will affect which functions can be used. For the first one, I think this formula in G5 and copied across and...

1 year ago
Reply
RE: Cell counting by color

Hi Hans, It doesn't work properly though. DisplayFormat cannot be reliably used in a UDF - try updating some of the values so they go yellow and yo...

1 year ago
Forum
Page 7 / 56