Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Helo everyone, please see below how my dataset looks like:
2 tables:
- 1 excel from Sharepoint: MAP_ERRORS with "ERROR NAME" and "ERROR Description"
ERROR NAME,ERROR Description
Exception,ClassCastException
Exception,RuntimeException
Invalid value,invalid data type for attribute
-1 SQL Server Table EMEA_AM_AP with "ITEM_PK" "STATUS" "Error_message"
ITEM_PK,STATUS,Error_message
code1,KO,null:RuntimeException:data not complaint
I would like to create a new column in table EMEA_AM_AP where if I find one of the Error Description messages, to have automatically the ERROR NAME. For example:
ITEM_PK,STATUS,Error_message, ERROR Type
code1,KO,null:RuntimeException:data not complaint,Exception
I succeeded to do that with the following power queries:
#"Added Error_type" = Table.AddColumn(#"Renamed Columns1", "Error Type", each Table.SelectRows(MAP_ERRORS, (outer) => Text.Contains([Error_message], outer[ERROR Description]))),
#"Expanded Error Type" = Table.ExpandTableColumn(#"Added Error_type", "Error Type", {"ERROR NAME"}, {"ERROR NAME"}),
On Power BI Desktop everything is working perfect, but if I refresh the report on the Service, I got this error message:
Please note that all data souce settings are set to organizational.
Could you please give me an idea of how to fix this issue?
Try to use the Sharepoint.Contents connector instead of the Sharepoint.Files connector, and try to use API14 instead of 15.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
49 | |
32 | |
27 | |
27 | |
26 |
User | Count |
---|---|
61 | |
56 | |
33 | |
29 | |
27 |