Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
If Usage > 0 And Tnd > 0 Then Return Math.Round((Tnd / Usage) * 100, 2) Else Return 0 End If
请将此转换为 SSRS 表达式
尝试这个: =IIF(Usage > 0 And Tnd > 0, Round((Tnd/Usage)*100,2), 0 )
=IIF(Usage > 0 And Tnd > 0, Round((Tnd/Usage)*100,2), 0 )