| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

差分

ナビゲーションに移動 検索に移動
編集の要約なし
==ファンクションポイント 簡易マクロ==
[[ファンクションポイント][Excel VBA]]
Dim ret As String
If ftr <&lt;= 1 Then If det <&lt;= 4 Then
ret = TRANSACTIONAL_COMPLEXITY_LOW
End If
If 5 <&lt;= det And det <&lt;= 15 Then
ret = TRANSACTIONAL_COMPLEXITY_LOW
End If
If 16 <&lt;= det Then
ret = TRANSACTIONAL_COMPLEXITY_AVG
End If
If ftr = 2 Then
If det <&lt;= 4 Then
ret = TRANSACTIONAL_COMPLEXITY_LOW
End If
If 5 <&lt;= det And det <&lt;= 15 Then
ret = TRANSACTIONAL_COMPLEXITY_AVG
End If
If 16 <&lt;= det Then
ret = TRANSACTIONAL_COMPLEXITY_HIGH
End If
End If
If 3 <&lt;= ftr Then If det <&lt;= 4 Then
ret = TRANSACTIONAL_COMPLEXITY_AVG
End If
If 5 <&lt;= det And det <&lt;= 15 Then
ret = TRANSACTIONAL_COMPLEXITY_HIGH
End If
If 16 <&lt;= det Then
ret = TRANSACTIONAL_COMPLEXITY_HIGH
End If
Dim ret As String
If ftr <&lt;= 1 Then If det <&lt;= 5 Then
ret = TRANSACTIONAL_COMPLEXITY_LOW
End If
If 6 <&lt;= det And det <&lt;= 19 Then
ret = TRANSACTIONAL_COMPLEXITY_LOW
End If
If 20 <&lt;= det Then
ret = TRANSACTIONAL_COMPLEXITY_AVG
End If
End If
If 2 <&lt;= ftr And ftr <&lt;= 3 Then If det <&lt;= 5 Then
ret = TRANSACTIONAL_COMPLEXITY_LOW
End If
If 6 <&lt;= det And det <&lt;= 19 Then
ret = TRANSACTIONAL_COMPLEXITY_AVG
End If
If 20 <&lt;= det Then
ret = TRANSACTIONAL_COMPLEXITY_HIGH
End If
End If
If 4 <&lt;= ftr Then If det <&lt;= 5 Then
ret = TRANSACTIONAL_COMPLEXITY_AVG
End If
If 6 <&lt;= det And det <&lt;= 19 Then
ret = TRANSACTIONAL_COMPLEXITY_HIGH
End If
If 20 <&lt;= det Then
ret = TRANSACTIONAL_COMPLEXITY_HIGH
End If

案内メニュー