Query parameters equal to cell reference

DomanicD

New Member
Joined
Mar 14, 2020
Messages
4
Office Version
  1. 365
Platform
  1. Windows
Hello,
I am working on a file import where the reference workbook contains sheets labeled by day, 1st through 31st, for the month. I want the query to pull, according to a reference cell, the appropriate day of month sheet.

How can I edit the parameters to adjust for a date change and pull the appropriate sheet?


Source = Excel.Workbook(File.Contents("S:\National Desk\Reports\Flash\Nice\Third Party FTE requests\OctoberGate.xlsm"), null, true),
#"16th_Sheet" = Source{[Item="16th",Kind="Sheet"]}[Data],
#"Promoted Headers" = Table.PromoteHeaders(#"16th_Sheet", [PromoteAllScalars=true]),
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Hello,
I am working on a file import where the reference workbook contains sheets labeled by day, 1st through 31st, for the month. I want the query to pull, according to a reference cell, the appropriate day of month sheet.

How can I edit the parameters to adjust for a date change and pull the appropriate sheet?


Source = Excel.Workbook(File.Contents("S:\National Desk\Reports\Flash\Nice\Third Party FTE requests\OctoberGate.xlsm"), null, true),
#"16th_Sheet" = Source{[Item="16th",Kind="Sheet"]}[Data],
#"Promoted Headers" = Table.PromoteHeaders(#"16th_Sheet", [PromoteAllScalars=true]),



Was able to figure this out by building to parameter tables that took.

Source = Excel.Workbook(File.Contents("S:\National Desk\Reports\Flash\Nice\Third Party FTE requests\OctoberGate.xlsm"), null, true),
#"SheetName" = Source{[Item= Day,Kind="Sheet"]}[Data],
#"Promoted Headers" = Table.PromoteHeaders(#"SheetName", [PromoteAllScalars=true]),
 
Upvote 0
Great that you solved it but one more thing, use [CODE=pq] your code here [/CODE] in proper forum
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,832
Messages
6,121,844
Members
449,051
Latest member
excelquestion515

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top