Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Get data from file where named range is in the future

Hello,

 

i want to load only the data from files where the named Range "Ablaufdatum" - which is a date - is not expired (so "Ablaufdatum is in the future).

 

I currently have the list of all Excels, which I want to combine and transform with a Transform Sample File. I tried the follwing, but CurrentWorkbook is limited. (Excel.CurrentWorkbook(){[Name="Ablaufdatum"]}[Content]). 

 

o0omaxrbi_0-1666864985615.png

Do you have an idea, how I can only get data from Excel Workbooks where the Named Range "Ablaufdatum" is still in the future?

 

3 REPLIES 3
Anonymous
Not applicable

I now tried to use this line in the M code: 

 

= Table.AddColumn(ShowOnlyMaintFolder, "Custom", each functionGetMyRange([Folder Path]&[Name]))

 

in addition with this function:

let GetNamedRange=(MyFile)=>

let
Source = Excel.Workbook(File.Contents(MyFile), null, true){[Name="Ablaufdatum"]}[Content],
#"MyDate" = Table.TransformColumnTypes(Source,{{"Column1", type date}}),
OnlyDate = #"MyDate"{0}[Column1]
in
OnlyDate

in GetNamedRange

 

This is the error:

 

o0omaxrbi_0-1666880581539.png

 

Anonymous
Not applicable

Thanks for the reply! Altough the Ablaufdatum is not in the file name! The Ablaufdatum is a named range somewhere in the Excel file. This cell (with date as a value) is always in a different spot, which is why i used named ranges. 

 

So i have a value in every Excel Sheet ("Ablaufdatum") as a named range, which is located sometimse in Cell A2, somtimes B3 and so on. It that date is expired, I dont want to include this excel file in my Query!

Hope it is clear!

mussaenda
Super User
Super User

Hi @Anonymous,

 

It is better if you will get the excel coming from a folder connector instead of excel connector.

the filter the filename or sourcename like Text.Contains(Text.Upper([ColumnName]) , "ABLAUFDATUM")

 

in that case, it will read all the files with ablafdatum within and it will disregard consider all letter cases.

 

Hope this Helps

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors