ContributionsMost RecentMost LikesSolutionsRe: Integration TestRail and TestComplete HI SundayTwins , Let me know if you were able to load this framework. I am trying to use the TestRail Api's to load the test results. Thanks Sachin Re: Dynamically change column name in Project Variables Thanks guys for your response. I am creating table on fly and need to use column name as per the passed argument. I am able to resolve the issue now. Thanks. Dynamically change column name in Project Variables Is it possible to create table with dynamic column names. I have below code: Set ti = Project.Variables.VariableByName("MyTable") ti.AddColumn("Name") ti.RowCount = 1 Project.Variables.VariableByName("MyTable").Name(0) = "ABCD" instead of passing "Name", I need to pass variable, like below colName = "Name" ti.AddColumn(colName) Project.Variables.VariableByName("MyTable").colName(0) = "ABCD" Above code returns "undefined" error.