Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have data being returned from a SQL view via ODBC (IDS on SuSE) where a
specific field has a value of N and n. The problem is; only N is showing and all n's are summed in... How can this be solved? (O/s = Xp & Office = 2K) |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() include a function in your SQL? SELECT IIF(strcomp(Field,'n',0),'L','U') AS 'Field', Value FROM MYTABLE -- keepITcool | www.XLsupport.com | keepITcool chello nl | amsterdam Green Chameleon wrote in I have data being returned from a SQL view via ODBC (IDS on SuSE) where a specific field has a value of N and n. The problem is; only N is showing and all n's are summed in... How can this be solved? (O/s = Xp & Office = 2K) |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Well, what I did was create a union on one view with two
where clauses... One checks for capitals and the other doesn't ie.: select column1, column2.... from table_name1 where column2 not in ('a', 'b'...'z') union all select column1, column2.... from table_name1 where column2 in ('a', 'b'...'z') And it works beautifully... Thanx for the reply! "keepITcool" wrote: include a function in your SQL? SELECT IIF(strcomp(Field,'n',0),'L','U') AS 'Field', Value FROM MYTABLE -- keepITcool | www.XLsupport.com | keepITcool chello nl | amsterdam Green Chameleon wrote in I have data being returned from a SQL view via ODBC (IDS on SuSE) where a specific field has a value of N and n. The problem is; only N is showing and all n's are summed in... How can this be solved? (O/s = Xp & Office = 2K) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Make cells in Excell case sensitive | Excel Discussion (Misc queries) | |||
countif function: how to distinguish case/make case sensitive | Excel Worksheet Functions | |||
make sumproduct lookup case sensitive | Excel Worksheet Functions | |||
Can I Make AutoFilter to be Case-Sensitive? | Excel Discussion (Misc queries) | |||
any way to make vlookup case sensitive? | Excel Worksheet Functions |