どのようにVBA Excelのオフィス365のEssenifステートメントを使用するには?


この記事では、VBA Excel Office 365にif - Elliifステートメントを使用する方法について説明します.下で見ましょう!公式のバージョンを入手してください.https://www.microsoft.com/en-in/microsoft-365/excel

もしVBA構文でESORIFなら
If condition1 then
'Code to execute if condition1 is true
ElseIF Condition2 then
'Code to execute if condition2 is true
ElseIF Condition3 then
'Code to execute if condition3 is true
'--
'--
ElseIF ConditionN then
'Code to execute if conditionN is true
{Else}
'Optional Code if none of the condition is matched.
End If Sub

例: ESLEIF文の場合、VBAを使用したグレードマーク
  • まず、Excelのワークシートでは、[開発]タブに移動する必要があります.
  • 次に、コードセクションの下のVisual Basicオプションを選択する必要があります.
  • 選択して視覚的な基礎
  • さて、以下のコードをコピーしてペーストしなければなりません.
  • Function GRADES(marks As Double)
    If marks > 80 Then
    GRADES = "A"
    ElseIf marks > 60 Then
    GRADES = "B"
    ElseIf marks > 40 Then
    GRADES = "C"
    Else
    GRADES = "F"
    End If
    End Function
    
  • その後、選択してコードを保存し、ウィンドウを閉じる必要があります.
  • コードを保存する
  • 再度、Excelのスプレッドシートに移動し、[開発]タブをクリックします.
  • 次に、コードセクションでマクロオプションを選択する必要があります.
  • マクロオプションの選択
  • ここで、まず、供給された値が80より大きいかどうかを調べる.
  • ここで、供給される値は100であるので、80より大きい.
  • 最後に、与えられた条件が真であるならば、機能はAを返して、IFブロックを出ます.

  • 簡単な概要
    ここでは、VBA Excel Office 365のif - Eliseifステートメントを使用する手順を説明しました.これを利用しなさい.以下のコメント欄であなたの価値あるフィードバックを共有してください.詳細については、当社のウェブサイト*チェックアウトGeek Excel !! *
    また、
  • Excel VBA Decisions in Office 365 ~ Easy Tutorial for You!!
  • LOOKUP and SUM the First or All Matched Values in Rows or Columns in Excel
  • Formulas to LOOKUP & SUM the 1st or Matched Values in Row or Column
  • Simple Shortcut to Move to the Next Control in MS Excel 365!!
  • Easy Shortcut to Move to the Previous Control in Excel 365!!