Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

RQM Excel Import

This is regarding “RQM Excel Importer” utility. I am trying to import table of excel into section of my test case using HTML() function in config file.


// Start looking for test cases on row 2
testcase.XLSStartRow=2
testcase.XLSArtifactID=A
testcase.dc:title=B
testcase.Section("myns:com.ibm.rqm.planning.editor.section.testCasePreCondition", "RQM-KEY-TC-PRE-COND-TITLE")=HTML("<table border='1'><thead><tr><th>" & C & "</th><th>" & D & "</th><th>" & E & "</th></tr></thead><tbody><tr><td>" & C & "</td><td>" & D & "</td><td>" & E & "</td></tr></tbody></table>")

This helps me to import single row of table into that particular section, but not the complete table.
ID Test Case column1 column2 column4
1 test case 1 data 1 data 1 data 1
data 2 data 2 data 2
2 test case 2 data 3 data 3 data 3
data 4 data 4 data 4
data 5 data 5 data 5
data 6 data 6 data 6


I want to import able from C1 to E3 and for test case 2 from C4 to E7. Currently I am able to import only single row for every test case.

Kindly suggest the possible ways

0 votes


Accepted answer

Permanent link

Sudarshan,


As you are enumerating each row for testcase attributes, you will be able to process only one row for HTML table. If you need to have multiple row for HTML table then I would suggest to spread entire table data in a single row and let configuration syntax prepare table using HTML tags.

Regards,
Mehul

Sudarshan M selected this answer as the correct answer

0 votes

Comments

 hi mehul,


Am not getting your point, could you please explain in brief!

Regards,

Sudarshan M 


One other answer

Permanent link
Sudarshan,

Change your data as 

C D E F G H
ID Test Case column1 column2 column3 column4 column5 column6
1 test case 1 data 1 data 2 data 3 data 4 data 5 data 6
2 test case 2 data 1 data 2 data 3 data 4 data 5 data 6

and write configuration file as 

HTML("<table border='1'><thead><tr><th>" & C & "</th><th>" & D & "</th><th>" & E & "</th></tr></thead><tbody><tr><td>" & F & "</td><td>" & G & "</td><td>" & H & "</td></tr></tbody></table>")

Regards,
Mehul

0 votes

Your answer

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details
× 7,489
× 1,318
× 156

Question asked: May 06 '20, 1:54 a.m.

Question was seen: 2,085 times

Last updated: May 06 '20, 6:45 a.m.

Confirmation Cancel Confirm