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
Anonymous
Not applicable

Shows only some records when I use R visual

I used R visual in my report to show records in table format.

for that, I used 'gridExtra' package.

 

After Run R script, it shows only 6 records.The actual count is 830.There is no Duplicate Record.

 

What should I do to show all records?

 

Thanks,

Pankil

7 REPLIES 7
v-viig
Community Champion
Community Champion

Looks like you should turn on "Don't summarize" for all of data fields.

Please let us know if that works for you.

 

image.png

 

Ignat Vilesov,

Software Engineer

 

Microsoft Power BI Custom Visuals

[email protected]

Anonymous
Not applicable

I already tried for that.but doesn't work for me.

v-viig
Community Champion
Community Champion

Could you please share the whole code?

 

Ignat Vilesov,

Software Engineer

 

Microsoft Power BI Custom Visuals

[email protected]

Anonymous
Not applicable

Hello @v-viig

 

Thanks for your response.

Here is my code for dataset of two fields.

 

 

library(gridExtra)
grid.table(head(dataset))

 

Thanks,

Pankil

 

@Anonymous,

 

You'll need to specify argument n.

https://www.rdocumentation.org/packages/utils/versions/3.4.3/topics/head

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Hello @v-chuncz-msft,

 

Thanks for useful share.it is helpful to me.

 

But I think for display, it seems like, row data is propositional to height of visual.

When I export data it will show all data.so I think the issue is different.

 

Updated Code is:

library(gridExtra)
grid.table(head(dataset,n=10))

I attached a screenshot of my visual.

 

2018-01-03_1230.png

 

 

 

Thanks,

Pankil

@Anonymous,

 

If not necessary, the built-in Table visual is enough.

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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 Fabric 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.

Top Solution Authors