Forum Discussion
eddd83
4 years agoResolver I
Remove errors is not working
Firstly, i have already tried the following link: https://community.powerbi.com/t5/Desktop/How-to-remove-error-rows-Remove-error-option-not-working/td-p/652249 a) the instructions are based on an o...
- 4 years ago
I discovered you can remove the error before the Transform File step.
PC2790
4 years agoCommunity Champion
Try:
let
Source = (Parameter2) => let
Source = Pdf.Tables(Parameter2, [Implementation="1.3"]),
Page1 = Source{[Id="Page013"]}[Data]
in
Page1
in
Source
I think thsi will avoid the error however the page 14 will not be included in further transformations.
Please try once.
eddd83
4 years agoResolver I
This is problematic because each pdf could have a different number of pages. Is there a way to create a variable or something, so that it can import the maximum number of pages?