What is the datatype of the field WkEnd?
If it is a date field then you need this
lookup = DLookup("[GOEnd]", "[WatEngDataWeek]", "[WkEnd] = #" & WkEnding & "#")
If it is a number then you need this:
lookup = DLookup("[GOEnd]", "[WatEngDataWeek]", "[WkEnd] =" & WkEnding)
If it is a text...