Hello @Anto180788 It is indeed possible to create a table structure / empty table for the columns highlighted in yellow. As a proof of concept I am giving the code that would create an emtpy table or structure .The variable names, types and size are indicative examples and need to be subsituted with actual values.
Data can be stored in the table so created. Reports can be produced using the data stored in the table.
/*This portion creates the table*/
Proc sql;
create table work.Empty_table (label="Impact and Substitutability Analysis")
(
Market_share num length=8 format=best12. label="Market Share",
Impact_on_market char length=100 label="Impact On Market",
Substitutability char length=100 label="Substitutability",
Critical_function char length=100 label="Critical Function"
);
quit;
/* This portion gives the details of the table*/
proc contents data=work.empty_ds3;
run;
The operative portion of the output of the content portion are reproduced below :
This shows the structure of the table:
This extract shows the table label:
... View more