Wall Schedule Question


ACADuser
 Share

Recommended Posts

My units are in inches for the plan work but the Wall Schedule also displays in inches for the lengths.

I changed the DBX using the NUMBER STYLE button in the DBX bit that length did not update to Feet & inches.

So do users have any control of the number format in the schedules?

 

Link to comment
Share on other sites

OK, thanks for the clarification.

 

I was able to add this:

begin
	wlength = (owner.length / 12.0).round(2)
	wlength.to_s
	rescue
	"Error"
	end

 

But it displays as "10.2 in" and needs to be feet.

What causes the "in" to display at all?

 

CA Wall Len.JPG

Link to comment
Share on other sites

  On 3/20/2020 at 7:25 PM, ACADuser said:

OK, thanks for the clarification.

 

I was able to add this:

begin
	wlength = (owner.length / 12.0).round(2)
	wlength.to_s
	rescue
	"Error"
	end

 

But it displays as "10.2 in" and needs to be feet.

What causes the "in" to display at all?

 

CA Wall Len.JPG

Expand  

 

It's because length is a Measurement.  Either convert it to a float first with something like length.to_f or use the Measurement class to your advantage with something like length.to_ft

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share