Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 49
» Latest member: antwantillman
» Forum threads: 4,492
» Forum posts: 4,495

Full Statistics

Online Users
There are currently 1529 online users.
» 0 Member(s) | 1527 Guest(s)
Bing, Yandex

Latest Threads
SELECT statement with MS ...
Forum: MS Access SQL Tutorials
Last Post: Qomplainerz
07-27-2023, 03:35 PM
» Replies: 0
» Views: 1,077
SELECT statement with the...
Forum: MS Access SQL Tutorials
Last Post: Qomplainerz
07-27-2023, 03:31 PM
» Replies: 0
» Views: 528
Creating hyperlinks in HT...
Forum: HTML5 Tutorials
Last Post: Qomplainerz
07-27-2023, 01:23 PM
» Replies: 0
» Views: 824
What's new in HTML5?
Forum: HTML5 Tutorials
Last Post: Qomplainerz
07-27-2023, 12:48 PM
» Replies: 0
» Views: 547
What is HTML5?
Forum: HTML5 Tutorials
Last Post: Qomplainerz
07-27-2023, 12:43 PM
» Replies: 0
» Views: 515
Neck isometric exercises
Forum: Exercises
Last Post: Qomplainerz
07-27-2023, 11:44 AM
» Replies: 0
» Views: 809
Shoulder shrug
Forum: Exercises
Last Post: Qomplainerz
07-27-2023, 11:43 AM
» Replies: 0
» Views: 468
Neck retraction
Forum: Exercises
Last Post: Qomplainerz
07-27-2023, 11:43 AM
» Replies: 0
» Views: 433
Neck flexion and extensio...
Forum: Exercises
Last Post: Qomplainerz
07-27-2023, 11:42 AM
» Replies: 0
» Views: 502
Neck rotation
Forum: Exercises
Last Post: Qomplainerz
07-27-2023, 11:42 AM
» Replies: 0
» Views: 474

 
  If...Then...Else in VBA
Posted by: Qomplainerz - 07-26-2023, 08:32 PM - Forum: Excel VBA Tutorials - No Replies

Description:

The If statement checks a condition and executes a block of code if the condition is true.
If the condition is false, it can execute an alternative block (Else).

Example:

Sub ExampleIfThenElse()
    Dim age As Integer
    age = 25

    If age >= 18 Then
        MsgBox "You are an adult."
    Else
        MsgBox "You are a minor."
    End If
End Sub

Print this item

  Control structures in VBA
Posted by: Qomplainerz - 07-26-2023, 08:31 PM - Forum: Excel VBA Tutorials - No Replies

Control structures allow you to make decisions or repeat code based on certain conditions.

Print this item

  Functions in VBA
Posted by: Qomplainerz - 07-26-2023, 08:27 PM - Forum: Excel VBA Tutorials - No Replies

Description:

Functions are blocks of code that perform specific tasks and return a value to the calling code. 
They are called by their name and can be used in expressions.

Example:

Function AddNumbers(a As Integer, b As Integer) As Integer
    AddNumbers = a + b
End Function

Sub ExampleFunction()
    MsgBox "The sum is: " & AddNumbers(5, 3)
End Sub

Print this item

  Date datatype in VBA
Posted by: Qomplainerz - 07-26-2023, 08:26 PM - Forum: Excel VBA Tutorials - No Replies

Description:

Used to store date and time values.

Example:

Dim today As Date
today = Date

Print this item

  String in VBA
Posted by: Qomplainerz - 07-26-2023, 08:25 PM - Forum: Excel VBA Tutorials - No Replies

Description:

Used to store text or alphanumeric data.

Example:

Dim message As String
message = "Hello, Excel!"

Print this item

  Boolean in VBA
Posted by: Qomplainerz - 07-26-2023, 08:25 PM - Forum: Excel VBA Tutorials - No Replies

Description:

Used to store True or False values.

Example:

Dim isRaining As Boolean
isRaining = True

Print this item

  Floating-point numbers with double precision in VBA
Posted by: Qomplainerz - 07-26-2023, 08:23 PM - Forum: Excel VBA Tutorials - No Replies

Description:

Used to store double-precision floating-point numbers with decimals.

Example:

Dim height As Double
height = 175.5

Print this item

  Floating-point numbers with single precision in VBA
Posted by: Qomplainerz - 07-26-2023, 08:23 PM - Forum: Excel VBA Tutorials - No Replies

Description:

Used to store single-precision floating-point numbers with decimals.

Example:

Dim pi As Single
pi = 3.14

Print this item

  Long integers in VBA
Posted by: Qomplainerz - 07-26-2023, 08:22 PM - Forum: Excel VBA Tutorials - No Replies

Description:

Used to store larger whole numbers between -2,147,483,648 to 2,147,483,647.

Example:

Dim population As Long
population = 1000000

Print this item

  Integers in VBA
Posted by: Qomplainerz - 07-26-2023, 08:21 PM - Forum: Excel VBA Tutorials - No Replies

Description:

Used to store whole numbers between -32,768 to 32,767.

Example:

Dim age As Integer
age = 25

Print this item