I have a SQL script like the following:
Select
col1,
col2,
col3,
col4
From
(Select
case when
condition1
and condition2
and condition3
end ind1,
case when
condition4
and condition5
and condition6
end ind2,
case when
condition7
and condition8
and condition9
end ind3,
case when
condition10
and condition11
and condition12
end ind4
From table x
Where condition)
This sql is used as a FreeHand-SQL data provider inside a dektop intelligence report (BO XI 3.1). I'm trying to extract using VBA all the conditions in the case statements and display them one by one in each sheet of the dektop intelligence report. For example, I have to display the following:
case when
condition1
and condition2
and condition3
end ind1
then, in another sheet
case when
condition4
and condition5
and condition6
end ind2
I have to do the same for all the case statements. So basically I have to extract and display all the content from each "case .... ind1,2,3,4". Can someone help me with this? I'm new with VBA.
Thank you.