Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default How do I make a Pivot Case sensitive?

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,253
Default How do I make a Pivot Case sensitive?


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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default How do I make a Pivot Case sensitive?

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Make cells in Excell case sensitive Mliamos Excel Discussion (Misc queries) 3 August 3rd 09 02:29 PM
countif function: how to distinguish case/make case sensitive mvwoolner Excel Worksheet Functions 3 March 18th 09 02:18 PM
make sumproduct lookup case sensitive PBcorn Excel Worksheet Functions 1 January 9th 09 10:10 AM
Can I Make AutoFilter to be Case-Sensitive? jgraves Excel Discussion (Misc queries) 7 April 2nd 08 02:53 PM
any way to make vlookup case sensitive? Dan in NY Excel Worksheet Functions 5 February 10th 05 09:05 PM


All times are GMT +1. The time now is 03:50 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"