Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Mederic
Post Patron
Post Patron

Generating errors in #table code

Hello, 

For my personal knowledge, I'd like to know if it's possible to add Errors in the code below as shown in the illustration on the right of the image?

Thanks in advance

Best regards

 

 

let
    T1 = #table( type table[C1=Text.Type, C2=Number.Type, C3=Number.Type, C4=Number.Type], { {"A",22, 36, 45}, {"B", 42, 54, 63}, {"C", 67, 73, 86}, {"D", 22, 76, 84}} )
in
    T1

 

#table with Error.jpg

1 ACCEPTED SOLUTION
ronrsnfld
Super User
Super User

Just replace any of the entries with an error record. You can add messages to the error which will show up if you select the cell. eg:

let
    T1 = #table( type table[C1=Text.Type, C2=Number.Type, C3=Number.Type, C4=Number.Type], { 
        {"A",22, 36, 45}, 
        {"B", 42, 54, 63}, 
        {"C", 67, 73, 86}, 
        {"D", 22, error [Reason="my error", Message="I want this", Detail="showing the error here"], 84}} )
in
    T1

View solution in original post

2 REPLIES 2
Mederic
Post Patron
Post Patron

Hello @ronrsnfld ,

Great, thank you very much,
Thanks also for nice layout/formating the code
It's nicer and easier to read

Have a nice day

ronrsnfld
Super User
Super User

Just replace any of the entries with an error record. You can add messages to the error which will show up if you select the cell. eg:

let
    T1 = #table( type table[C1=Text.Type, C2=Number.Type, C3=Number.Type, C4=Number.Type], { 
        {"A",22, 36, 45}, 
        {"B", 42, 54, 63}, 
        {"C", 67, 73, 86}, 
        {"D", 22, error [Reason="my error", Message="I want this", Detail="showing the error here"], 84}} )
in
    T1

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.