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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Syndicate_Admin
Administrator
Administrator

Variable

Dear All,

i have the following code and i want to read the client number from the table hlp in the cell A1.

how do i have to define this?

 

Best Thomas

 

let
Quelle = Access.Database(File.Contents("C:\Users\t.severa\Desktop\Projektcontrolling\VIOI.accdb"), [CreateNavigationProperties=true]),
#"_Bewegungsdaten Neu" = Quelle{[Schema="",Item="Bewegungsdaten Neu"]}[Data],
#"Gefilterte Zeilen" = Table.SelectRows(#"_Bewegungsdaten Neu", each ([Mandant] = 222063))
in
#"Gefilterte Zeilen"

1 REPLY 1
lbendlin
Super User
Super User

let
Quelle = Access.Database(File.Contents("C:\Users\t.severa\Desktop\Projektcontrolling\VIOI.accdb"), [CreateNavigationProperties=true]),
#"_Bewegungsdaten Neu" = Quelle{[Schema="",Item="Bewegungsdaten Neu"]}[Data],
#"Gefilterte Zeilen" = Table.SelectRows(#"_Bewegungsdaten Neu", each ([Mandant] = 222063))
in
#"Gefilterte Zeilen"[client number]{0}

 

Note that Access databases are not recommended as data sources.

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

Top Solution Authors