I want to show 6 tabbar item but its not allow me to do that.its only shows 4 tabbar . After 4 its show ... More section . How can I show 6 tabbar item at the same time .
Related
Is there any way to have tabs show as sets of rows, rather than 'scrolling' through them?
For instance, If I have my app split into two regions, with data on the left, and sections of meta-data on the right, if I have more than 4 tabs on the right, it starts to scroll. I'd like to be able to have them on multiple rows. Sort of like:
Section 1 | Section 2
Main data area | Tab 1 | Tab 2 | Tab 3
| Tab 4 | Tab 5 |
My Data is like this
User_ID Stage_1 Stage_2 Stage_3 StagesTotal
---------------------------------------------------
U000 3 9 8 20
U111 5 7 2 14
U222 3 6 5 14
U333 6 5 8 19
U444 8 4 6 18
U555 2 7 7 16
U666 5 5 4 14
------------------------------------------------------
I have a bar chart that shows the median
That is good
instead of the median i want to show the 90% percentile
I tried creating a new measures
Stage1_90Perc = PERCENTILE.EXC(Stages[Stage1],90)
Stage2_90Perc = PERCENTILE.EXC(Stages[Stage2],90)
Stage3_90Perc = PERCENTILE.EXC(Stages[Stage3],90)
StagesTotal_90Perc = PERCENTILE.EXC(Stages[StagesTotal],90)
When I add the new meseare to my chart it breaks
it becomes like this
bu the chart turns to this
my question is how to display the 90% percentile in that report data
Note : the 90% measure will be used in many other charts once it is fixed
You have entered what I believe to be a simple mistake where you wrote (Stages[Stage],90) :
Stage_90Perc = PERCENTILE.EXC(Stages[Stage],90)
It should be this instead :
Stage_90Perc = PERCENTILE.EXC(Stages[Stage], .90)
I have a dataset in which variables are like the image
I want to produce a table for serogroup and all antibiotics[penicillin-tetracycline]. Antibiotics have value label ("Sensitive" "Resistant").
Here I only consider "Resistant" value.
I have tried following code:
gen All_antibiotic =1 if penicillin=="Resistant"
replace All_antibiotic =2 if ampicillin=="Resistant"
.
.
tab All_antibiotic serogroup
But it did not give complete table.
There are various difficulties here:
You don't provide a reproducible example, in that you don't provide a data example we can use. See this page on minimal examples.
You don't make clear what would be the rows, columns and cells of the table.
You are confusing string values and value labels. "Resistant" is a string value, not a value label.
The question title doesn't really indicate the problem.
This may help. In your case you would need rename before you could use reshape.
clear
input id group str4(y1 y2 y3)
1 1 frog frog toad
2 1 frog toad toad
3 1 toad toad toad
4 2 frog frog frog
5 2 frog frog toad
6 2 frog toad toad
end
preserve
reshape long y, i(id) j(which)
describe
tab group y
| y
group | frog toad | Total
-----------+----------------------+----------
1 | 3 6 | 9
2 | 6 3 | 9
-----------+----------------------+----------
Total | 9 9 | 18
restore
I need to use data from Sheet 1 and compare it to data in Sheet 2. If the data, apart from its last four characters in Sheet 1, matches then I need corresponding data from Sheet 2 to be copied to Sheet 1. Maybe if there is a way to us a 50% match, it would work. For example:
Sheet 1
A B C
Row 1 One-77 '11
Row 2 Veyron 16.4 '13
Row 3 Corvette Z06 (C6) '06
Row 4 Nova SS '70
Row 5 Enzo Ferrari '02
Row 6 NSX Type R '92
Sheet 2
A B C
Row 1 One-77 Premium
Row 2 Veyron 16.4 Standard
Row 3 Corvette Convertible (C1) Premium
Row 4 Nova SS Premium
Row 5 Enzo Ferrari Standard
Row 6 NSX Type S Premium
Sheet 1
A B C
Row 1 One-77 '11 **Copies Premium**
Row 2 Veyron 16.4 '13 **Copies Standard**
Row 3 Corvette Z06 (C6) '06 **Does Not copy, Leaves Blank**
Row 4 Nova SS '70 **Copies Premium**
Row 5 Enzo Ferrari '02 **Copies Standard**
Row 6 NSX Type R '92 **Does Not copy, Leaves Blank**
Keep in mind that in Sheet 1 the last 3 characters are the model year. Those numbers need to be there. They are not in Sheet 2.
From your description this should not suit but seems to for your sample:
=iferror(vlookup(left(A1,len(A1)-4),'Sheet 2'!A:C,3,0),"")
I have a Day Strucuture Table, which has following Columns I want to display:
DoW HoD Value
1 1 1
1 2 2
1 3 2
1 4 2
1 5 2
1 6 2
1 7 2
1 8 2
1 9 2
1 10 2
1 11 4
1 12 4
1 13 4
1 14 4
1 15 4
1 16 4
1 17 4
1 18 4
1 19 4
1 20 4
1 21 1
1 22 1
1 23 1
1 24 1
Dow is The Day of Week (Monday etc.), HoD is the Hour of Day and Value is the actual value.
Now I want to Bind this Day Structure Entity Collection directly to a Control so any Changes can be bound TwoWay
Like this Format:
I think the best way to achieve this is to use a Template and/or a converter, but I just dont know how ;)
I already read this article, but Lack of a TwoWay Binding functionality makes it not useful for me :(
I Hope you can help me
Jonny
Again i solved it on my own ;)
For this problem i created a Grid with a fixed amout of rows and columns. Inside this Grid I put a Itemscontrol bound to my List of data. Inside the DataTemplate I placed a Textbox bound to the current value and bound the Grid Row and Columnproperties to the Day of the Week/Hour of Day.
Pro:
The Textbox is TwoWay Databound to a certain Object or Element.
Very Easy to implement if Row and Colum Property is numeric.
Con:
Limited to a fixed amout of Rows/Columns.
Very much Code to write in XAML (Copy and Paste)
Kinda "dirty" Code. Feels not like the best way to do it.
Im still open for other suggestions.