hey guys i got a series of labels that do complex calculations, but i want them to round off (or at least display) to 2dp
lblpercentTOTAL = Format(lblpercentTOTAL, "###.##")
lblpercentPOM = Format(lblpercentPOM, "###.##")
lblpercentCMM = Format(lblpercentCMM, "###.##")
lblpercentIC = Format(lblpercentIC, "###.##")
lblpercentSCC = Format(lblpercentSCC, "###.##")
lbltotalcorrecttotal.Caption = Format(lbltotalcorrecttotal, "###.##")
i tried the above but had no luck, any idea's?
lblpercentTOTAL = Format(lblpercentTOTAL, "###.##")
lblpercentPOM = Format(lblpercentPOM, "###.##")
lblpercentCMM = Format(lblpercentCMM, "###.##")
lblpercentIC = Format(lblpercentIC, "###.##")
lblpercentSCC = Format(lblpercentSCC, "###.##")
lbltotalcorrecttotal.Caption = Format(lbltotalcorrecttotal, "###.##")
i tried the above but had no luck, any idea's?