Hello Guys,
I probably have a silly question but it blocked me totally
I have a below formula, which is counting the data from one sheet:
and I have also second formula, which is counting X's from second sheet:
How can I add the first results to the second formula, so COUNTIF(R[1]C:R[1999]C,""X"")" + IMPORTcount?
And second question - is it possible to count X's in cells if for example I have in cell XXXXX <- I would like to count it five times, so result should be 5, not 1 - excel can do that?
Thank you
Max
I probably have a silly question but it blocked me totally
I have a below formula, which is counting the data from one sheet:
Code:
Dim IMPORTcount As Integer
IMPORTcount = Sheets("IMPORT").Cells(ROWS.Count, "A").End(xlUp).Row
and I have also second formula, which is counting X's from second sheet:
Code:
With Sheets("DBCR").Range("O1")
.FormulaR1C1 = "=COUNTIF(R[1]C:R[1999]C,""X"")"
.Font.Bold = True
.Interior.ColorIndex = 6
.HorizontalAlignment = xlCenter
End With
How can I add the first results to the second formula, so COUNTIF(R[1]C:R[1999]C,""X"")" + IMPORTcount?
And second question - is it possible to count X's in cells if for example I have in cell XXXXX <- I would like to count it five times, so result should be 5, not 1 - excel can do that?
Thank you
Max