以下は私の Crystal Report です。Crystal Report を初めて使用するので、以下のような式を実行したいのですが、どうすればよいですか?
if (`Fee_unit`==Percent)
{
FeeTotal = (`Fee` divided by 100) * `Number of patients`;
}
else
{
FeeTotal = `Fee` * `Number of patients`;
}
以下は私の Crystal Report です。Crystal Report を初めて使用するので、以下のような式を実行したいのですが、どうすればよいですか?
if (`Fee_unit`==Percent)
{
FeeTotal = (`Fee` divided by 100) * `Number of patients`;
}
else
{
FeeTotal = `Fee` * `Number of patients`;
}
フィールド エクスプローラー -> 式 -> 新しい式。
From the drop down above select Basic Syntax.
If {TableName.FeeUnit} = {TableName.Percent} Then // Assuming you have FeeUni and Percent as column in TableName table. Drag drop the two and wrap with the code
formula=({TableName.Fee}/100)*{TableName.Patients} // formula here is a keyword
Else
formula={TableName.Fee}*{TableName.Patients}
End If