Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: Creating a single line chart from 3 datasets

Is this the kind of thing you had in mind? It's just a pivot chart with the dates grouped by year and day, then the value field set to show as a ru...

5 years ago
Reply
RE: Very Challenging - Adding sequential string to CSV values in a single cell. Please Help.

There is a Thanks button at the top right of each post (other than your own!):

5 years ago
Reply
RE: What am I doing wrong with this code? lastrow

I would also recommend using a variable so you only need to alter it in one place: Private Sub CommandButton1_Click() Dim RT_Line_Code As S...

5 years ago
Forum
Reply
RE: What am I doing wrong with this code? lastrow

Judging by the picture, your worksheet is called "CODE v2" - note the space in the middle.

5 years ago
Forum
Reply
RE: Very Challenging - Adding sequential string to CSV values in a single cell. Please Help.

Just as an alternative, you could also do it as a UDF: Function AddSKU(CellText As String, SKU_text As String) As String Const DELIMITER As String ...

5 years ago
Reply
RE: Using command button to run macro

The copy line should only copy unfiltered rows anyway, but if you need to specify it, use: wsCopy.Range("A2:D" & lCopyLastRow).Specialcell...

5 years ago
Forum
Reply
RE: Using command button to run macro

Assuming you assigned it to the form button correctly, put a breakpoint at the start of the code then click the button and step through the code check...

5 years ago
Forum
Reply
RE: Option Buttons on Worksheet

I would advise against using activex controls unless they have a particular functionality you need, but to address your question specifically: optionb...

5 years ago
Reply
RE: Using command button to run macro

It would be a lot easier to comment on code that we can see, but the most likely cause would be that, since you're using a commandbutton and not a For...

5 years ago
Forum
Reply
RE: Pass Named Range to VBA Function

RangeMortality.Item(1, 1).Value and RangeMortality(1, 1).Value are the same, as indeed are RangeMortality.Cells.Item(1, 1).Value and RangeMortal...

5 years ago
Forum
Reply
RE: Change shape color based on another cell value

The formula goes in a cell, not in the shape.

5 years ago
Forum
Reply
RE: Change shape color based on another cell value

The function code must be in a normal module, not a worksheet or ThisWorkbook module.

5 years ago
Forum
Reply
RE: Change shape color based on another cell value

You could also do this with a UDF: Function ColourShape(theValue As Double, ShapeName As String) With Application.Caller.Worksheet.Shapes(Shap...

5 years ago
Forum
Reply
RE: Read-Only Program Inputs InUseNO or InUSeYES in folder error 53

You should remove the bold line completely. The path is supplied when you call that routine - the routine should not change it.

5 years ago
Forum
Page 41 / 56