Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
364 views
in Technique[技术] by (71.8m points)

excel - Power Query Source Item Not Case Sensitive

Is it possible to have a Power Query source statement be case in-sentitive?

For example, I have 10 excel files in a folder that I need to import into my data model; with the desired data in sheets named either Detail or DETAIL.

I'm using the following statement to reference the sheets, but need to modify it so the query with work for both names:

= Source{[Item="DETAIL",Kind="Sheet"]}[Data]

Is it possible to do this?

question from:https://stackoverflow.com/questions/65832994/power-query-source-item-not-case-sensitive

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

The usual format is = try xxx otherwise yyy so this should work for you

  = try Source{[Item="DETAIL",Kind="Sheet"]}[Data] otherwise Source{[Item="Detail",Kind="Sheet"]}[Data] 

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...