vote up 0 vote down star

how can use case when statement with oledb to excel file using vb.net 2.0 like select prodid, case prodid when 1 then 'fine' when 2 then 'good' end

flag
3  
Is your Caps Lock or Shift key stuck? – Crises of Identity Nov 16 at 12:39
1  
Is that a SQL query? – djeidot Nov 16 at 12:45
need select query to read excel file – VENKAT Nov 16 at 12:50
is this won't support even for Provider=Microsoft.ACE.OLEDB.12.0 ? – VENKAT Nov 16 at 12:58

closed as not a real question by Moayad Mardini, marc_s, Andomar, Johannes Rössel, Ben S Nov 17 at 2:58

It's difficult to tell what is being asked here. This question is ambiguous, vague, or rhetorical and cannot be reasonably answered in its current form.

2 Answers

vote up 3 vote down

OLEDB is only a "relay" of sort and merely repeats the query to the underlying source.

I don't believe Excel supports the CASE WHEN construct, and thence you cannot use it, even through OLEDB.

link|flag
vote up 0 vote down

You'll have to use IIF instead of CASE when querying Excel, eg

SELECT prodid, IIF(prodid = 1, 'fine', IIF(prodid = 2, 'good', '')) FROM MyExcel

As you can see, it can get messy quickly. It's not too bad if you've only got a two-way evaluation, but in your code it's not clear whether you only have 2 possible values for prodid or more than that. My example assumes there are other values, hence the nested IIF.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.