Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: Add comment to cell from another cell contents.

It depends - what do you want to trigger the code?

4 years ago
Reply
RE: Add comment to cell from another cell contents.

Essentially the code would be something like: sub AddCommentsToOperations() application.screenupdating = false dim myTable as listobject s...

4 years ago
Reply
4 years ago
Forum
Reply
RE: Function not working - based on previous function that does work

Your input variable is called SpMorTblName, not SpMortTblName

4 years ago
Forum
Reply
RE: Grouping by latest date in each month

One way is to create a new column that is the same day for each month (eg first of the month) then group on that to get the max date for each month, t...

4 years ago
Forum
Reply
RE: question on creating a menu tab

Yes, that's possible (most things are!) though I would probably use a listbox rather than multiple comboboxes. I suspect that should be posted as a di...

4 years ago
Forum
Reply
RE: VBA - sending part of first page from complete worksheet

Have a look at Ron's code here: If you prefer to have the range as part of the message body, then have a look at this one instead:

4 years ago
Forum
Reply
RE: question on creating a menu tab

Change the ShowSelSheets code in Module1 to: Sub ShowSelSheets() Dim ws As Worksheet Dim strType As String strType = Worksheets("Menu...

4 years ago
Forum
Reply
RE: Convert Day to Date

You could also use: =DATE(A1,1,B1)

4 years ago
Reply
RE: Sort Date in a pivot table

It doesn't look like you really need a pivot table per se - perhaps you could use Power Query to just group the data and output a table that you can s...

4 years ago
Reply
RE: Share Portfolio Dashboard - # will not work in formula

I think you are out of luck then until such times as it is released more generally (I think it's Insider only currently).

4 years ago
Reply
RE: Power Query: Column Data

I'm sure there is a fancier way, but you could use a brute-force approach: -add one calculated column for each value column that check if the last ...

4 years ago
Forum
Reply
RE: Share Portfolio Dashboard - # will not work in formula

If you have BYROW available to you, you could use: =BYROW(A3#,LAMBDA(a,(INDEX(STOCKHISTORY(a,EOMONTH(TODAY(),-4)-1,,2,0),1,2)-INDEX(STOCKHISTORY(a...

4 years ago
Reply
RE: Index and Match not returning all values

The samples provided don't actually have any matches, so it's hard to say why your formula isn't working with your real data, other than that presumab...

4 years ago
Reply
RE: Copy data in activex image control

Image controls do not have scrollbars. I suggest you use a listbox or similar instead.

4 years ago
Forum
Page 32 / 56