5 Aralık 2020 Cumartesi

Data is everywhere but the information must be produced.

Veri her yerde ama bilgiyi üretmek gerekir.
Data is everywhere but the information must be produced.

FARUK ÇUBUKÇU, IT Specialist.


24 Ekim 2019 Perşembe

Split Function


One of the powerful functins of Excel VBA is Split function. Split function splits (parse) the string data with a given separator. For example, “Turkey/İzmir/Urla” string data can be splitted as follows:

Turkey
İzmir
Urla

Code required:
Dim StringParts() As String
StringParts  = Split( “Türkiye/İzmir/Urla” , "/" )
StringParts (0) = "Türkiye”
StringParts (1) = "İzmir"
StringParts (2) = "Urla"

30 Ağustos 2019 Cuma

22 Ağustos 2019 Perşembe

Excel's new ew artificial intelligence (AI) features explained by Microsoft.

New tools (Ideas), new data types and new fuctions added Excel to provide artificial intelligence (AI) features. 
These functions:  FILTER, UNIQUE, SORT, SORTBY, SEQUENCE, SINGLE, and RANDARRAY.


More information:  https://www.microsoft.com/en-us/microsoft-365/blog/2018/09/24/bringing-ai-to-excel-4-new-features-announced-today-at-ignite/

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