export data is not working for more then 4 Dimensions in icCube-7.9 - iccube

we tried to export the data (in excel format) from a table with 5 Dimensions, but it did not work. However, when we reduced the number of the dimensions to 4, it did work.
is there any thing to do to increase the number of the dimension and be able to export the data?

It appears that the problem has been fixed in the latest version of the icCube reporting application.

yes, we can confirm that! it is working now.

Related

Add row into table even when some data not found in power automate?

Hi I am trying to use AI Builder to scan some titles and populate into a spreadsheet once the pdf is dropped into a folder.
It works fine where it find all the Data but if it can not find any data in the columns starting with SOL then it does bring anything through. I would like it too still bring through any data from the first 3 columns even if nothing is found for the "SOL" columns. Can anyone help please?
Example Output as needed. Currently row 3 will not come through.
Tried some conditions and compose
Maybe you can also post your message in the Power automate community.

Reading XLSX-file with multiple sheets and special cell-style/formation into R

a coworker for my project is working mainly in excel and he provided me with an xlsx file with more than 400 sheets with a similar structure. Anyway, every sheet has information for more than one individual (max of 12) and for each individual, there are about 50 different measurements (length of special character). But they are equally organized on the sheets so here is not the issue.
The issue is that between all this data there are manually inserted mean values added for cases where the measurement could not be done, which I would like to remove. The only way to identify these mean values is based on the font color.
Does someone know how I can loop through all sheets and get not only the cell information but also the style of each cell?
I tried already using the "readxl", "tidyxl" & "openxlsx" packages, but my problem is that I am not able to loop through all sheets using the "tidyxl::xlsx_formats(path = path)" function or the "openxlsx::loadWorkbook" function.
I´m sure that I´m just missing a function or another way to deal with this problem.
Thank´s already for any help :).
So far I was using "readxl::excel_sheets" to loop through all sheets and get the cell information given in each cell but I can´t find a way to get the cell style information too (R version 4.2.2 Patched, packageVersion("readxl") ‘1.4.0’).
Then I tried using "tidyxl::xlsx_formats" which gives me the cell style information but only for the first sheet (packageVersion("tidyxl") ‘1.0.8’). I followed the instructions on their CRAN page.
Also, I tried different approaches like (openxlsx::loadWorkbook) which I found on other issues like "https://stackoverflow.com/questions/62519400/filter-data-highlighted-in-excel-by-cell-fill-color-using-openxlsx".

Rstudio show only the first 50 columns

I have a problem on RStudio in my data view, I can see only the first 50 columns for all dataframes. Is it possible to increase the number of view columns?
You can use a "hidden" RStudio option to set the maximum number of columns the viewer will display before switching to the arrows.
This example sets the number to 1000 columns:
rstudioapi::writeRStudioPreference("data_viewer_max_columns", 1000L)
Found in an RStudio developer's comment on a github issue about this topic.
---EDIT---
You can set this value in the Command Palette in RStudio v1.4:
I do not believe you can increase the number of columns to view at a time. But you can click the little arrow at the top to scroll across to more columns.
I'm using RStudio 1.2.1335 and not sure which version of RStudio first implemented this feature.

Google Spreadsheet IF and AND

im trying to find an easy formula to do the following:
=IF(AND(H6="OK";H7="OK";H8="OK";H9="OK";H10="OK";H11="OK";);"OK";"X")
This actually works. But I want to apply to a range of cells within a column (H6:H11) instead of having to create a rule for each and every one of them... But trying as a range:
=IF(AND(H6:H11="OK";);"OK";"X")
Does not work.
Any insights?
Thanks.
=ArrayFormula(IF(AND(H6:H11="OK");"OK";"X"))
also works
arrayformulas work the same way they do in excel... they just need an ArrayFormula() around to work (will be automatically set when pressing Ctrl+Alt+Return like in excel)
In google sheets the formula is:
=ArrayFormula(IF(SUM(IF(H6:H11="OK";1;0))=6;"OK";"X"))
in excel:
=IF(SUM(IF(H6:H11="OK";1;0))=6;"OK";"X")
And confirm with Ctrl-Shift-Enter
This basically counts the number of times the said range is = to the criteria and compares it to the number it should be. So if the range is increased then increase the number 6 to accommodate.

Expand RStudio preview data

I'd like to hear how one could bypass the default View() options. In my computer it only shows up to 100 columns. I'd like it to about 400 columns. It's possible?
Meanwhile, you can use the utils::View() to view more columns of the data. This isn't quite as useful or pretty as the RStudio Viewer but it does a decent job on tables with more than 100 columns.
The other option that I occasionally use is View(df[,101:200]) etc. to view different columns of the data--sometimes this can be combined with some columns at the beginning so that I can see the necessary key data.

Resources