About 50 results
Open links in new tab
  1. Dim statement (VBA) | Microsoft Learn

    Mar 30, 2022 · Use the Dim statement at the module or procedure level to declare the data type of a variable. For example, the following statement declares a variable as an Integer.

  2. Learn How to Use Variable Libraries - Microsoft Fabric

    Dec 15, 2025 · Follow the steps for creating a variable library and using variable values in various stages of a deployment pipeline.

  3. Predefined variables - Azure Pipelines | Microsoft Learn

    When you use a variable in a template that isn't marked as available in templates, the variable doesn't render. The variable doesn't render because its value isn't accessible within the template's scope.

  4. about_Variables - PowerShell | Microsoft Learn

    Working with variables To create a new variable, use an assignment statement to assign a value to the variable. You don't have to declare the variable before using it. The default value of all variables is …

  5. Everything you wanted to know about variable substitution in strings

    Jun 20, 2024 · There are many ways to use variables in strings. I'm calling this variable substitution but I'm referring to any time you want to format a string to include values from variables. This is …

  6. Variables (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · The scope of a variable is the range of Transact-SQL statements that can reference the variable. The scope of a variable lasts from the point it's declared until the end of the batch or stored …

  7. Get Started with Variable Libraries - Microsoft Fabric

    Dec 15, 2025 · Learn how to manage Microsoft Fabric variable libraries to customize and share item configurations in a workspace.

  8. SET @local_variable (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · The following example creates a local variable named @dept and uses this local variable in a SELECT statement to find the first name (FirstName) and family name (LastName) of all …

  9. DECLARE @local_variable (Transact-SQL) - SQL Server

    Nov 18, 2025 · The value can be a constant or an expression, but it must either match the variable declaration type or be implicitly convertible to that type. For more information, see Expressions.

  10. New-Variable (Microsoft.PowerShell.Utility) - PowerShell

    The New-Variable cmdlet creates a new variable in PowerShell. You can assign a value to the variable while creating it or assign or change the value after it is created.