Structural Columns to Add Analytical Element

I was able to take the structural framing and do the Add Analytical Element with no issues but when i tried to do the same thing with structural columns i got the following issue with all of the elements

“Model element is not supported for creating an analytical element. {2462273}”

Working in RIR 2026. Its not urgent just confusing

Thank you,

@cflynn What does the warning say? I believe you have extract the location line of the structural column and then use that to create the Analytical Elements.

The warning says this ““Model element is not supported for creating an analytical element. {2462273}”” odd that the framing doesnt require that, you just plug those elements into the Add Analytical Element component you you’re good to go.

@cflynn Which Revit version are you using?

Revit 2026 with rhino 8

@cflynn Yes there is an issue is with the Component.

I tried with the scripted component and it worked.

import clr
clr.AddReference("RevitAPI")
clr.AddReference("RhinoInside.Revit")

from RhinoInside.Revit import Revit
from Autodesk.Revit.DB import Transaction
from RhinoInside.Revit.Convert.Geometry import GeometryEncoder
from Autodesk.Revit.DB.Structure import AnalyticalMember

doc = Revit.ActiveDBDocument

if not Execute:
    Result = None
else:
    t = Transaction(doc, "Create Analytical Member")
    t.Start()
    try:
        Result = []
        
        revit_curve = GeometryEncoder.ToCurve(Curve) 

        analy_member = AnalyticalMember.Create(doc, revit_curve)
        
        Result.append(analy_member)
        t.Commit()
        
    except Exception as e:
        print("Error:", str(e))
        t.RollBack()
        Result = None

@cflynn In the upcoming update of RIR, this issue has been resolved:)