I am trying to create a Google Sheet where some of the data is inputet on a column basis.
Like this
This input is done in a Input sheet. And then I want to transform the data into this form in the Output sheet.
I have no idea how I could do this in a simple way. I did think about some solution using the Transpose function, but I can't realy wrap my head around how to solve this.
Here is a link to the sheet if anyone can help me out:
https://docs.google.com/spreadsheets/d/1W244e2IOyORYyMPg6VnRiYDgX2ux7VZn4N27mEUSOII/edit#gid=1942499075
try:
=INDEX(QUERY(SPLIT(FLATTEN(IF('Input sheet'!C4:L="",,
'Input sheet'!A4:A&"×"&'Input sheet'!B4:B&"×"&'Input sheet'!C3:L3&"×"&'Input sheet'!C4:L)), "×"),
"where Col2 is not null"))
Related
I'm trying to make a conditional formatting statement based on if a cell is filled with text on another sheet.
For example:
Sheet1 needs to change color of the cell A1 to blue if Sheet2 has text in cell A1
I used a couple of techniques as suggested in other stackoverflow questions, such as:
Conditional Formatting from another sheet (I cant find out how to do some sort of regexmatch in this statement)
I thought of some sort of line as (as a custom formula in conditional formatting):
A1(REGEXMATCH(INDIRECT(Sheet2!A1), ""),1 ,0))
but that doesnt work.
Hope someone can help me with this!
try:
=A1=NOT(ISBLANK(INDIRECT("Sheet2!A1")))
I have a PowerBI file with CSV files as datasources. I created a table in PowerBI that summarizes the fields of a CSV file, and added a PrioirtyGrp field with Name, ID and Priority concatenated to group by.
I haven't found a way that works to group the rows of a single table by the PriorityGrp value in each row. If I have a data set such as:
I've been trying to summarize and group on the PriorityGrp field to get a resulting table of:
but no luck. What I know of SQL and VBA hasn't been much help in getting my arms around DAX, and I'm planning on doing a course, but if anyone has syntax for a Summarize, GroupBy or some other statement that could help with this, it would be much appreciated.
Thanks,
Mike
So I am trying to set up a conditional formatting custom function that will highlight the cell in question if a certain range on another spreadsheet contains any blank cells up to the last row of that spreadsheet. Can I write this as a formula for conditional formatting? Any help would be appreciated, thank you.
I tried:
=IF(COUNTBLANK(IMPORTRANGE(Index!$C9,"report.csv!E:F")))>0
when referencing another sheet in conditional formatting you need to use INDIRECT()
try:
=IF(COUNTBLANK(IMPORTRANGE(INDIRECT("Index!$C9"), "report.csv!E:F"))>0, 1)
I am rather new to Power Bi and I have a question i can't find the answer to.
I want to import a table that have some label columns, with repeated items, and more than 15 data columns.
My desire result would be to group the label columns, so no repeated items, and aggregate the values of the remaining columns.
Is there a way to do that in PQ editor or DAX ?
I appreciate any help or direction you can give me!
A sample of the table (it's much bigger, with multiple values in the first three columns)
Table Sample
Thanks a lot
Edit: From that sample, the output y I want is the following
Output Sample
The thing is, there are many different values in the first columns, and i need to agreggate all the other values, keeping they column name (cause this info is already linked to other files).
Maybe the only way is to group by and add the columns, renaming them one by one?
I want to do this in a couple of files, so if you know of another way please let me know!
In your query designer import your table. Then go to Home > Group By and group like you want it, the same goes for the aggregations and thats it.
If you just want to remove row duplicates, just group all columns which you dont want to aggregate and the rest can be aggregated like you want it.
Is it possible to remove repeating text data in a Google visualization chart table?Looking for quick suggestions
FYI Following is an example of my question.!
In the column 'Test Plan Name'..I want to remove the repeating names... Can it possible?
Thank You
http://i.stack.imgur.com/bKjk7.jpg
As far as I searched I couldn't find any option to eliminate duplicate values. But we can count the null and duplicate values.Also we can perform joins,avg,sum,min,max on a google table chart's column values.
This documentation explains about this. Hope this will help you.