J Jason Rhymes Feb 17, 2005 #1 Is there a way to convert a number to show feet and inches in a report?
P PC Datasheet Feb 17, 2005 #2 Put the following in the control source property of a textbox: =[YourNumber]/12 & "Ft. and " & [YourNumber] Mod 12 & "in."
Put the following in the control source property of a textbox: =[YourNumber]/12 & "Ft. and " & [YourNumber] Mod 12 & "in."
J Jason Rhymes Feb 17, 2005 #3 Thanks, that's close but the output is screwed up on some. Example, I have this: 1.05416666666667Ft. and 1in. for 12.62
Thanks, that's close but the output is screwed up on some. Example, I have this: 1.05416666666667Ft. and 1in. for 12.62
K Ken Snell [MVP] Feb 17, 2005 #5 PC just flipped the division sign the wrong way: =[YourNumber]\12 & " Ft. and " & [YourNumber] Mod 12 & " in."
PC just flipped the division sign the wrong way: =[YourNumber]\12 & " Ft. and " & [YourNumber] Mod 12 & " in."