Forum

Philip Treacy
Philip Treacy
@philipt
Admin
Member
Joined: Oct 5, 2010
Last seen: Jun 8, 2026
Topics: 61 / Replies: 1588
Reply
RE: Multiple If Statement Problem

Hi Branden, This seems overly complicated to me, but maybe I'm not understanding exactly what you are trying to do. If services happen every 500...

6 years ago
Reply
RE: Close 'X' before save workbook prevention

Hi Steve, In the ThisWorkbook module use this event: Private Sub Workbook_BeforeClose(Cancel As Boolean) Cancel = True ' YOUR CODE GOES HERE ...

6 years ago
Forum
Reply
RE: Date picker form

Hi Gabriel, You had two pieces of code setting the value of Birthday. The 2nd one set the value to a variable called cValue but this had no value ...

6 years ago
Forum
Reply
RE: Update, Previous & Next Button

Hi Mariam, Have you read this post Regards Phil

6 years ago
Forum
Reply
RE: How do I increase a number by 1 for every new row created?

Yes, just change Range("A1") to Range("A2")

6 years ago
Forum
Reply
RE: User Form to access (up to) seven different worksheets

Hi Mel, You could do this with VLOOKUP or XLOOKUP and avoid having to create a form and write VBA to make the form work. Create a new sheet and c...

6 years ago
Reply
RE: Multiple conditions formula

Hi Louise, It looks like you are working with numbers stored as text. The RIGHT function is for strings. So is everything a string or do you have...

6 years ago
Reply
RE: VBA Code for Extracting Numbers

Hi Shoaib, You can use a formula for this =VALUE(TEXTJOIN("",TRUE,IFERROR(MID(A1,ROW(INDIRECT("1:100")),1)+0,""))) If your version of Excel d...

6 years ago
Forum
Reply
RE: How do I increase a number by 1 for every new row created?

Hi Taylor, If the invoice number is in A1 try this ActiveSheet.Copy After:=Sheets(Sheets.Count) Range("A1").Value = Range("A1").Value + 1 Reg...

6 years ago
Forum
Reply
RE: VBA xlColumnClustered Only 1 color

Hi Steve, the columns in the column chart are all the same colour because they are not touching each other. There's no need to make them differen...

6 years ago
Forum
Reply
RE: VBA xlColumnClustered Only 1 color

Hi Steve, As always, illustrating what you are talking about saves me a lot of time figuring it out. Please provide a workbook. I'm not entirel...

6 years ago
Forum
Reply
RE: VBA xlColumnClustered Only 1 color

Hi Steve, You can set the series colours like this Sub ChangeSeriesColours() ActiveSheet.ChartObjects("Chart 1").Activate With ActiveChart...

6 years ago
Forum
Reply
RE: How to Build Interactive Dashboard (Sales by Managers) Problem

Hi, Please provide your workbook so we can see what you've done. Phil

6 years ago
Forum
Reply
RE: Multiple If Statement Problem

Hi Branden, What do you mean by 'suppress'? In cells E11:E14, how do you want these values to 'suppress each other'? If you can provide a wor...

6 years ago
Reply
RE: Mouse left click on a shape should select the cell underneath the cursor

Hi Duraivel, I like to make things as simple as possible. I've often found that 'requirements' for a job are actually focussed on how to do someth...

6 years ago
Forum
Page 79 / 110
0