Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: Countifs

I'm not really clear on what you mean, but perhaps you want the wildcard * which will match any text in the specified field? (Note: it will not match ...

7 years ago
Reply
RE: Clear Empty Cells macro and merged cells error

I can't reproduce that. I get a number the first time and then 0 thereafter. What exact code did you use?

7 years ago
Forum
Reply
RE: How to update folder and file names - e.g. change from 2018 in folder name to 2019

If they are the only files in the folder, you could simply process all the files excluding the Summary one using something like = Folder.Files("folder...

7 years ago
Forum
Reply
RE: Power Pivot / Pivot Tables Problem

I've only got Excel 2010 here so can't actually work with your model, but as a simple solution, couldn't you just create a set based on column items a...

7 years ago
Forum
Reply
RE: how to fill two comboboxes without duplicate

Simple option is to just to duplicate what you do for the first combobox, like this: Private Sub UserForm_Initialize() Dim d As Object, va, i ...

7 years ago
Forum
Reply
RE: Clear Empty Cells macro and merged cells error

You could use: c.value = vbnullstring which will work with merged cells too.

7 years ago
Forum
Reply
RE: Copy and Paste a sheet from One Workbook to Another

You can't copy a worksheet from an XML format workbook to an xls, since they have different numbers of rows and columns. You'll have to insert a new s...

7 years ago
Forum
Reply
RE: Copy and Paste a sheet from One Workbook to Another

If it works from an .xls and not from an .xlsm, I'd guess you are copying to an .xls file? If so, a sheet from an xlsm (or xlsx/xlsb) has more rows an...

7 years ago
Forum
Reply
RE: How to align the size of Plot Areas

Instead of deleting the axes, you could simply hide the lines and make the labels the same colour as the chart area, so it won't resize at all: ...

7 years ago
Forum
Reply
RE: Create Set today's date in the Previous Cell to the previous one of a manual input of a Determined logical data

range("B" & MyDato, "D"). Value is not valid syntax, as you have mixed up Range and Cells syntax. Assuming MyDato is a row number, you would ei...

7 years ago
Forum
Reply
RE: Centering a chart title again

To do it in code, you can just use: ActiveChart.SetElement msoElementChartTitleCenteredOverlay The same approach should also work manu...

7 years ago
Reply
RE: correct formulas to use to help extract data based on specific information

If you don't want a helper column, I'd suggest: B2 =SUMPRODUCT(($J$18:$J$722<$K$18:$K$722)*($G$18:$G$722=$A2)) C2 =IF($B2>0,SUMPRODUCT((...

7 years ago
Reply
RE: Copy and paste a chart without taking into account your ID name on the sheet 2

Assuming it's the only chart on the sheet, you can use this: Sub Copia_Immagine_Chart_Sul_Foglio2() Dim MyChart Worksheets("Foglio1").ChartObject...

7 years ago
Forum
Page 56 / 56