Skip to content

OfficeInside.Org

Office tutorials
  • Excel VBA Tutorial
  • Excel VBA How To
  • Excel VBA Functions
  • Excel How To
  • Links
  • Search

OfficeInside.Org

  • Search
  • Excel VBA Tutorial
  • Excel VBA How To
  • Excel VBA Functions
  • Excel How To
  • Links
silver iMac with keyboard and trackpad inside room

MS Word alternatives - The best choose

There are many alternative programs to MS Word, including: Google Docs – ...

Read more »
laptop computer on glass-top table

What are the best Excel alternatives - short list

There are many alternatives to Microsoft Excel, some of the most popular include: Google ...

Read more »

ActiveX Controls - ComboBox in Excel VBA

Table of Contents VBA Combo Box in Excel SpreadSheet Inserting VBA Combo ...

Read more »
Excel VBA CVAR function

CVar VBA Function - How to Convert Data to Variant

1. CVar VBA function – Description The CVar VBA function   returns ...

Read more »
Excel VBA CSTR function

CStr VBA function - How to convert data to string type

1. CStr VBA function – Description The CStr VBA function   returns ...

Read more »
Excel VBA Tutorial

Excel VBA Tutorial

Excel VBA Tutorial

Read more »
Excel VBA How To

Excel VBA How To

Excel VBA How to

Read more »
Excel VBA Functions

Excel VBA Functions

VBA Excel functions

Read more »
silver iMac with keyboard and trackpad inside room

There are many alternative programs to MS Word, including: All of these programs offer similar features to MS Word, such as creating and editing text documents, formatting text, and creating tables and charts.

MS Word alternatives – The best choose

laptop computer on glass-top table

There are many alternatives to Microsoft Excel, some of the most popular include: These are just a few examples, there are many other Excel alternatives available. It depends on your needs and budget which one will be suitable for you.

What are the best Excel alternatives – short list

Table of Contents VBA Combo Box in Excel SpreadSheet Inserting VBA Combo Box (ActiveX Control) VBA ComboBox programming (ActiveX control) ComboBox VBA programming (ActiveX control) – With clause VBA ComboBox programming (ActiveX control) – using a loop Programming a ComboBox (ActiveX control) – Entering values ​​from a ComboBox VBA ComboBox […]

ActiveX Controls – ComboBox in Excel VBA

Excel VBA CVAR function

1. CVar VBA function – Description The CVar VBA function   returns a value with the Variant data type  . The Variant data type can store both numeric and text data. When using this function, remember that the Variant data type itself is the least efficient data type in VBA. 2. […]

CVar VBA Function – How to Convert Data to Variant

Excel VBA CSTR function

1. CStr VBA function – Description The CStr VBA function   returns a value of the String data type  . The simplest form of the String data type with a variable number of characters takes up as many bytes in memory as there are characters in a given text string. We […]

CStr VBA function – How to convert data to string …

Excel VBA CSGN function

1. CSng VBA Function – Description The CSng VBA function   returns a value with the Single data type  . It is a number between -3.402823e38 and 1.401298e45  . The Single data type is 4 bytes in memory. We usually use functions when we want our data to be more efficient. […]

CSng VBA Function – How to Convert Data to Single …

Excel VBA CLNGLNG function

1. CLngLng VBA function – Description The CLngLng VBA function   returns a value of the LongLong data type  . It is an integer ranging from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 . The LongLong data type is 8 bytes in memory. It is important that the LongLong data type itself, unlike the Long […]

CLngLng VBA function – How to convert data to LongLong …

Excel VBA CLNG function

1. CLng VBA function – Description The CLng VBA function   returns a value of the Long data type  . It is an integer in the range –2,147,483,648 to 2,147,486,647 . The Long data type is 4 bytes in memory. The function can also be used to convert a number stored […]

VBA CLng Function – How to Convert Data to Long …

Excel VBA CINT function

1. CInt VBA function – Description The CInt VBA function returns a value of the Integer data type . It is an integer in the range -32768 to 32767 . The Integer data type takes 2 bytes in memory and is therefore very efficient. This way, we can convert low-valued […]

CInt VBA function – How to convert data to Integer …

Excel VBA CDBL function

1. CDbl VBA Function – Description The CDbl VBA function   returns a value with the Double data type  . It is a number between -1.79769313486232e +308 to -4.94065645841247E-324 . The Double data type is 8 bytes in memory. We usually use functions when converting very large floating point numbers. Using […]

CDbl VBA Function – How to Convert Data to Double …

Excel VBA CDATE function

1. CDate VBA Function – Description The CDate VBA function   returns a value with the Date data type  . The Date data type is 8 bytes in memory. The function converts the date and time saved in text form to VBA formatted date and time. The function works like the […]

CDate VBA Function – How to Convert Data to Date

Excel VBA CCUR function

1. CCur VBA Function – Description The CCur VBA function   returns a value with the Currency data type  . It is a floating point number formatted as a currency ranging from -922,337,203,477.5808 to 922,337,203,685,477.5807 . The Currency data type is 8 bytes in memory. . Attempting to call a function […]

CCur VBA Function – How to Convert Data to Currency …

Excel VBA CBYTE function

1. CByte VBA Function – Description The CByte VBA function returns a value of the Byte data type. It is an integer in the range 0-255 . The Byte data type, as its name suggests, occupies a memory space of 1B. This way, we can convert low-valued numbers to store […]

CByte VBA function – How to convert data to Byte …

Excel VBA CBOOL function

1. CBool ​​VBA Function – Description The CBool ​​VBA function returns a value of the Boolean data type, that is, True or False . We can use it to convert both the result of a logical expression and the number 1 or 0. The CBool ​​function can also be used […]

CBool ​​VBA Function – How to Convert Data to Boolean …

Excel VBA YEAR function

1. Year VBA function – Description The Year VBA function returns a number representing the year of a given date. So if we want Excel VBA to return to us numbers corresponding to subsequent years, we should use this function. It should be remembered that the date from which we […]

Year VBA Function – How to calculate year from date

Excel VBA WEEKDAYNAME function

1. WeekdayName VBA Function – Description The WeekdayName VBA function  returns the word name of the day of the week from 1 to 7. It is important that the argument for this function is a number, not a date. The function can be combined with the VBA Weekday function or […]

WeekdayName VBA Function – Day of the week in words

Top Posts

  • Sgn VBA function - How to return a sign of a number
    Sgn VBA function - How to return a sign of a number
  • ActiveX Controls - ComboBox in Excel VBA
    ActiveX Controls - ComboBox in Excel VBA
  • Log VBA function. How to calculate the natural logarithm
    Log VBA function. How to calculate the natural logarithm
  • Excel VBA Shell - How to control programs from Excel
    Excel VBA Shell - How to control programs from Excel
  • CLngLng VBA function - How to convert data to LongLong type
    CLngLng VBA function - How to convert data to LongLong type

© 2023 OfficeInside.Org – All rights reserved

Powered by WP – Designed with the Customizr theme

 

Loading Comments...