Filter uitable content by user parameters - matlab

I need some help. I have loaded large amount of data 52500x9 from .xlsx into UITable(whole year dataset 10min sampling period)component. I need to filter these data by date via DatePicker is it possible ? for example I want to display values from 1.1.2018 - to 12.1.2018
Here is how input looks like
enter code here

Related

How to turn off data formatting in table in time series data in grafana?

How do I turn off formatted data option by default so that the user can download the data as it is without any extra steps ? See the images for reference
Formatted data on
Formatted data off

How to Display a single Date in Google Data Studio?

I want to display a single date dynamically in Google Data Studio. e.g. I want to display last Monday's date whatever it was e.g. 09-11-2020 and it would change to 16-11-2020 as the Monday 16-11-2020 would pass and so on.
I have a connection with BigQuery and I can connect from there to bring the date dynamically from BigQuery as:
SELECT DATE_TRUNC(DATE_ADD(CURRENT_DATE(), INTERVAL 7 day), WEEK(MONDAY)) as coming_monday
&
SELECT DATE_TRUNC(CURRENT_DATE(), WEEK(MONDAY)) as last_monday
So calculating dates isn't a problem as they are being received in Google Data Studio, however, I could not display them appropriately using any of the Google Data Studio tools like Text, etc.
Dates can currently be displayed in Google Data Studio Scorecards; in addition, the Calculated Fields in the question could be recreated by copy-pasting the below into the respective Scorecards, aggregating by MAX or MIN (which would display the same Date in this scenario) and then setting the Type to Date (Default: Date & Time):
1) Coming_Monday
DATETIME_TRUNC(DATETIME_ADD(CURRENT_DATE(), INTERVAL 7 DAY), ISOWEEK)
2) Last_Monday
DATETIME_TRUNC(CURRENT_DATE(), ISOWEEK)
Editable Google Data Studio Report and a GIF to elaborate:
It cannot set single dynamic value with straightforward way as text in GDS now.
But, you can use normal Table tool of GDS with single row, and it will show as single dynamic value that you need. Scorecard can also be used.
Here is how-to of using Table.
Under Data menu, set the date column that you want to display in Dimension, and do not set Metric. Also, choose Rows per page as 1.
Under Style menu, uncheck the Show header checkbox, Rows numbers checkbox and Shows pagination checkbox.
When you view the report, it will show as text.

How Do I generate Line Graph in PowerBI for the following Data

The Data I have looked like the Image below:
I want to create a line Graph,
The x-axis will have the Months (January to June), Y-Axis will have the Tot_QtY.
Considering that the date information is not in a single column but is spread out to multiple columns, How do I make a line chart.
Output I am getting is shown below:
The Output I need would look like this:
your input data is not correct, you need to model it so you get one column with rows of data. Click Edit Queries, this opens query editor.
Click tab Transform, select your columns and click unpivot.
My expectation is that you still need to work a bit more on your data because how the system knows from a column: MayDATE. that you talk about May. The best base data you can have is a column date and a colum value with data.

How to calculate multiple columns in one Hoc view?

I am using TIBCO Jaspersoft : Ad Hoc Editor to create a Hoc view, where I have to calculate some column and generate reports.
I have data source where I have two data sets.
I have MasterId,MasterName
I have multiple record corresponding to MasterId. Ex. ActivityId,Name,Type,StartTime,EndTime,MasterId (FK from MasterTable.MasterId)
I have to calculate a column 1stActivity-Delay-hours, where I have to show the difference between 2 dates in HH:MM format (12:39)
for that I have used create calculated field option and place the formula
ElapsedMinutes("EndTime", "StartTime")/60
and to filter the data I have created new measure too and place the formula like-
tblActivity.StartTime < 12-12-2017 1:10 and tblActivity.EndTime > 11-12-2017 2:20
its working fine and showing the correct output except the HH:MM format. For example its showing 24.65 and instead 24.35 or something like that. I try to use % (mod) to get the minutes but % works as percentage here So I am not able to use the MOD functionality here (1st issue)
But when I need my second column in the same view with different condition (filter) for example: tblActivity.StartTime > 12-12-2017 1:10 and tblActivity.EndTime < 11-12-2017 2:20
and Activity.Name='act1' it will mess up with 1st column calculation.
As per my understanding we can only have one data-source per view, and we can't merge multiple view with different data-source.
can anybody suggest me how can I achieve this? how can I add multiple data-source in single view.
I can do this calculation in SQL easily by using temp table(#table). For instance I will calculate the 1stActivityDelay column and store the delay-hours in temp table and then calculate the 2ndActivity delay hours with different where condition and again store it in the temp table and at the end I will select the rows from temp table. But in this tool I am not able to find any way to do this.

Crystal Reports - Select Current YYMM

I'm trying to create a Crystal Report that reads data from an access table. I have a particular field in the access table called REPT_YYMM. This is basically a run data field, so each month when a program is run it populates the current year/month in the field before exporting to access, so there is a way to do month to month comparisons. For the report I'm working on I just want to display the data along with the current REPT_YYMM field when the data is refreshed on a monthly basis. Is there a way to do this in a formula. I'm not familiar enough with date type functions to know where to start.
Any guidance or suggestions are appreciated!
Your question isn't very clear but if i understood correct you just need to filter the data where field REPT_YYMM = YYMM.
Goto selection formulas, record and enter:
{table.REPT_YYMM} = cStr(currentdate,'yyMM');