14 Temmuz 2018 Cumartesi
11 Temmuz 2018 Çarşamba
To change a formula
There are different ways to change a formula;
1) On formula bar.
2) Doubl-click on the cell
3) Press F2 key
13 Ocak 2017 Cuma
Excel VBA - Find the last row
In Excel VBA, we need to find out last row number (how many rows / data tables's rows count) to scroll down or other operations.
For example start from B2 to the last row in B column.
Sheets("FC").Range("b2").End(xlDown).Row
Sheets(1).Range("b2").End(xlDown).Row
Example: Read all row in the column and add to combo box.
For line= 2 To wb1.Sheets(1).Range("b2").End(xlDown).Row
ThisWorkbook.Sheets("Sheet1").ComboBox1.AddItem wb1.Sheets(1).Cells(satir, 2).Value
Next
For example start from B2 to the last row in B column.
Sheets("FC").Range("b2").End(xlDown).Row
or
Example: Read all row in the column and add to combo box.
For line= 2 To wb1.Sheets(1).Range("b2").End(xlDown).Row
ThisWorkbook.Sheets("Sheet1").ComboBox1.AddItem wb1.Sheets(1).Cells(satir, 2).Value
Next
12 Kasım 2015 Perşembe
Using Excel Functions Together
Which function can be used together? And which of these combinations offers strong solutions?
VLOOKUP and MATCH
IFERROR and VLOOKUP
INDEX and MATCH
SUMIF and INDEX and MATCH
LEFT and FIND
RIGHT and FIND
MID and FIND
IF and AND / OR
We can see MATCH function too many. Because it produces the number of item in a list or column. So this number used in VLOOKUP as a third parametet (column number).
for more explanation:
www.excelci.com
14 Eylül 2015 Pazartesi
23 Ağustos 2015 Pazar
Count Number of Errors
Making too
much calculation cause some Excel errors. So you can count these errors on your
table.
=SUM(--ISERR(D2:D10))
Also number
of lines that includes no error.
=SUM(--NOT(ISERR(D2:D10)))
Typical screenshot:
Kaydol:
Kayıtlar (Atom)

