This changes the decimal places displayed on a percentage in a textbox. Can someone help me break it down and explain the asterisks? Thanks.
=IIF((ReportItems!Textbox68.Value > 1 and ReportItems!Textbox68.Value < 2), "*",
IIF((ReportItems!Textbox68.Value > 2 and ReportItems!Textbox68.Value < 3), "**",
IIF(ReportItems!Textbox68.Value > 3, "***", ReportItems!Textbox68.Value))
)