Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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"
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.