Happy New Year Bigfoot.
Thanks for the tip. I'll give it shot.
Happy New Year Bigfoot.
Thanks for the tip. I'll give it shot.
Happy Holidays All:
Trying to paste some text box values from a form onto a spreadsheet but only where a pasted range of values has been placed.
Scenario:
1. User clicks a command button to start Entry.
2. The form pops up with pre-populated text box values.
3. User enters comments in an empty text box
4. User clicks submit button to record the transaction.
At step 4 from this point the form will copy the values that were pre-selected before the form was initialized and paste them into a designated worksheet called "ACTIVITYLOG" (which it is doing)
THEN it should paste all the text box values from the form into the columns adjacent to the pasted values which I can't get it to do. This needs to happen for each transaction without overwriting the previous transactions.
The code resides within the form as follows:
[VBA]
Sub MoveToLog()
Application.ScreenUpdating = False
'STEP 1: Copy and paste filtered range of cells from other worksheet to Activity Log worksheet...THIS PART WORKS FINE.
With Sheets("ENTERPRISE")
Range("ENTERPRISE[ID],ENTERPRISE[Risk Score],ENTERPRISE[Due Date],ENTERPRISE[Due In Days]").Copy '<----- Add ranges as required
Sheets("ACTIVITYLOG").Cells(Rows.Count, 1).End(xlUp).Offset(1).PasteSpecial Paste:=xlValues
End With
'-------------------------------------------------------------------------------
'STEP 2: Copy textbox values from form into empty cells adjacent to pasted range from above (starting in column E then column D, etc) HERE'S MY STICKING POINT.
With Sheets("ACTIVITYLOG")
Do
If IsEmpty(ActiveCell) = False Then
.Range("A2").End(xlDown).Offset(0, 4).Value = TextBox1.Value '<---goes to first empty cell in column E next to first pasted row of data and should copy down to last pasted row of data
.Range("A2").End(xlDown).Offset(0, 6).Value = TextBox2.Value '<---goes to first empty cell in column F next to first pasted row of data and should copy down to last pasted row of data
.Range("A2").End(xlDown).Offset(0, 7).Value = TextBox3.Value '<---goes to first empty cell in column G next to first pasted row of data and should copy down to last pasted row of data
.Range("A2").End(xlDown).Offset(0, 8).Value = TextBox4.Value '<---goes to first empty cell in column H next to first pasted row of data and should copy down to last pasted row of data
.Range("A2").End(xlDown).Offset(0, 9).Value = TextBox5.Value '<---goes to first empty cell in column I next to first pasted row of data and should copy down to last pasted row of data
End If
Loop Until IsEmpty(ActiveCell) = True
End With
Application.ScreenUpdating = True
End Sub
[/VBA]
Any insights would be helpful!
Thank you
Hello World!
Here's what I have...
I need to do a vlookup in a column (TABLE1) but only extract the left most portion of the string based on a LEN count from another table (TABLE2), i.e below:
TABLE1
[TABLE="width: 555"]
[/TABLE]
[TABLE="width: 556"]
[TD="class: xl65, width: 278"]Operating System[/TD]
[TD="class: xl65, width: 278"]OS Checks[/TD]
[TD="class: xl66"]Solaris 5.8 2/02 SPARC[/TD]
[TD="class: xl66"] [/TD]
[TD="class: xl68"]VMware ESXi 4.0.0 build 1682696[/TD]
[TD="class: xl68"]
[/TD]
[/TABLE]
TABLE2
[TABLE="width: 556"]
[TD="width: 278"]PARTIAL OS[/TD]
[TD="width: 278"]CHAR COUNT[/TD]
Solaris 5.8
[/td]
[TD="align: right"]11[/TD]
VMware ESXi 4.0.0
[/td]
[TD="align: right"]18[/TD]
[/TABLE]
The field name "OS Checks" above is where the formula will be written. In TABLE2 the "CHAR COUNT" provides the count of the portion of text that I need pulled out of the "Operating System" field in TABLE1. I'll be writing logic against the results of the formula but need to get past this hump first!
I'm open to better ways to achieve this of course!
Please and Thank you.
Buhwheet
Re: Executing Select Case Subroutine in another Subroutine
The reference table and vlookup way is easier to set up indeed, but I'm using code to keep the workbook portable and to force myself to learn VBA. Thank you for taking the time to review the issue!
Re: Executing Select Case Subroutine in another Subroutine
The sub (b) was just used for demonstration purposes on this post. The acutal name of the sub has no parentheses around it. I'm stumped on this. Thank you however for taking the time to review the issue.
Hello World:
Can't seem to see where or why my "Call" function for another subroutine isn't executing. The subroutine consists of a Select Case Statement that will place names in a column. The code is supposed to work as such:
1. Execute primary Subroutine. We'll call this sub "A"
2. Halfway through sub A, the Select Case Subroutine is being called to run. We'll call this sub "B"
3. Once sub "B" runs, the remainder of sub "A" finishes its lines of code.
Please note: The routine works fine when the code module is executed in the workbook that its executing in. However, when I place the module in my personal macro workbook, only the Sub "A" executes and completely ignores sub "B".
It appears that everything is where it should be. Maybe a fresh pair of eyes can assist?
Option Explicit
Dim ws As Worksheet
Dim lastrow As Long, x As Long
Sub Sub(A)
'Set's up the Archer Export for formatting, column insertion and MS Access append.
ActiveWorkbook.Sheets(1).Activate
Application.ScreenUpdating = False
'Rename the sheet
ActiveSheet.Name = "ArcherRawData"
'Go to last oolumn with a name and insert Column Names
With Sheets("ArcherRawData")
Cells(1, Range("A1").End(xlToRight).Column + 1).Value = "VP"
Cells(1, Range("A1").End(xlToRight).Column + 1).Value = "Overdue"
Cells(1, Range("A1").End(xlToRight).Column + 1).Value = "Priority"
Cells(1, Range("A1").End(xlToRight).Column + 1).Value = "VP Last Name"
Cells(1, Range("A1").End(xlToRight).Column + 1).Value = "Severity Level"
Cells(1, Range("A1").End(xlToRight).Column + 1).Value = "Export Date"
'Create Named Range
Range("A1").Select
Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
Selection.CreateNames Top:=True, Left:=False, Bottom:=False, Right:= _
False
Range("A1").Select
'Set VP Tower Assignment
Call Sub (B) '<-------See Below for code !!!!
'Set Export Date
lastrow = .Cells(.Rows.Count, "A").End(xlUp).Row
.Range("AN2:AN" & lastrow).Formula = _
"=today()"
'Set Overdue Date
.Range("AJ2:AJ" & lastrow).Formula = _
"=IF(Due_Date<Export_Date,""Yes"",""No"")"
'Set VP LastName
.Range("AL2:AL" & lastrow).Formula = _
"=IFERROR(RIGHT(VP,LEN(VP)-FIND("" "",VP,1)),""Import VP!!"")"
'Set Severity Level
.Range("AM2:AM" & lastrow).Formula = "=IF(Severity=3,""Sev 3"",IF(Severity=4,""Sev 4"",IF(Severity=5,""Sev 5"","""")))"
'Set Priority Level
.Range("AK2:AK" & lastrow).Formula = _
"=IF(AND(OR(Scan_Type=""External""),AND(Exploitability<>""Unproven"",Exploitability<>"""")),1,IF(AND(OR(Scan_Type=""Internal"",Scan_Type=""DMZ""),AND(Exploitability<>""Unproven"",Exploitability<>"""")),2,IF(AND(OR(Scan_Type=""External""),AND(Exploitability=""Unproven"")),3,IF(AND(OR(Scan_Type=""External""),AND(Exploitability="""")),3,IF(AND(OR(Scan_Type=""Internal"",Scan_Type=""DMZ""),AND(Exploitability=""Unproven"")),4,IF(AND(OR(Scan_Type=""Internal"",Scan_Type=""DMZ""),AND(Exploitability="""")),4,""??""))))))"
'Set Assignments (Big nasty formula}
'Convert all formulas to text
Cells.Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
Range("A1").Select
'Delete "Evidence" and "Findings & Observations" columns
Columns("AD").EntireColumn.Delete
Columns("X").EntireColumn.Delete
Columns("U").EntireColumn.Delete
Columns("D").EntireColumn.Delete
'Adjust Columns
Cells.ColumnWidth = 30
'File Save As
Call MoveSaveAS
End With
Application.ScreenUpdating = True
End Sub
'**************************************************************************
Sub B()
'Assign VP names to VL tower column in Archer RawData tab. This subroutine to be "called" in Primary Script (ARCHER_SubRoutines)
ActiveWorkbook.Sheets(1).Activate
Set ws = Sheet1 '<----change to suit
lastrow = ws.Range("F" & Rows.Count).End(xlUp).Row
For x = 2 To lastrow '<---data starts in row 2. if not change this
Select Case ws.Range("F" & x).Value
'John Doe 1
Case "Run-Application Support", "Run-Citrix", "Run-Data Protection/Recovery Management", "Run-Database", _
"Run-Exchange/Messaging", "Run-Exchange/Server", "Run-Middleware", "Run-Network/Telecom", "Run-Production Operations", "Run-RxConnect", _
"Run-Server", "Run-Server/Middleware", "Run-Server-HPNS", "Run-Storage", "Run-Storage/Database", "Run-Team Leads-RxAmerica", _
"Run-Windows/Messaging", "Run-Windows-Server", "Run-AS400 (iSeries)", "Run-Mainframe"
ws.Range("AI" & x).Value = "Justin Skelton"
'John Doe 2
Case "Firewall Security", "Predecommission", "Uncorrelated"
ws.Range("AI" & x).Value = "Justin Skelton (Uncorrelated)"
'John Doe 3
Case "Retail System-Logistics", "Retail System-Pharmacy Systems", "Retail Systems - Minute Clinic Systems", "Retail Systems Store Systems", _
"Retail Systems-Corporate Systems", "Retail Systems-Enterprise Systems", "Retail Systems-Logistics", "Retail Systems-Merch/Mkting", _
"Retail Systems-Omnicare LTC", "RRetail Systems-Omnicare RTL", "Retail Systems-Omnicare RxC", "Retail Systems-Pharmacy Systems", _
"Retail Systems-Store Operations", "Retail Systems-Store Systems"
ws.Range("AI" & x).Value = "Ray Auger"
'John Doe 4
Case "PBM IT-Quality Assurance"
ws.Range("AI" & x).Value = "James Grubisic"
End Select
Next x
End Sub
Sub MoveSaveAS()
' Copies ArcherRawData sheet to new workbook to append in Access table
Sheets("ArcherRawData").Select
Sheets("ArcherRawData").Copy
Application.WindowState = xlMaximized
Application.GetSaveAsFilename
End Sub
Display More
Re: Loop or For Each in a Select Case Statement
I solved it. I completely forgot that I have the code stored in a module under my personal macro workbook. The code works fine when I reference the workbook and sheet number for it to execute under!
Thank you again!
Re: Loop or For Each in a Select Case Statement
I left the code name for the Sheet as is. Yes, column R has the conditions for the case statement to evaluate. The below snapshot has columns concealed but the two in question are visible (I'm assuming you meant a snapshot of the data I'm working with. If not, please let me know) :
[ATTACH=CONFIG]72078[/ATTACH]
Re: Loop or For Each in a Select Case Statement
Bryce, thank you for taking the time to assist. The code runs but with no results. As I debug through each line I'm seeing that the code is bypassing the Case Clauses within the Select Case block (jumping from the "For x = 2....." and not touching anything in between....then jumps to "End Sub". I tried to moving around a few lines of code like the "For X =2...." with no success. Everything else appears to be referencing correctly.
Sub EndUserSupport()
Set ws = Sheet1 '<----change to suit
lastrow = ws.Range("R" & Rows.Count).End(xlUp).Row
For x = 2 To lastrow '<---data starts in row 2. if not change this
'***CODE DOESN'T EXCUTE FROM HERE.....
Select Case ws.Range("R" & x).Value
Case "Windows 7 Enterprise 64 bit Edition Service Pack 1"
ws.Range("AV" & x).Value = "End User Support"
Case "Windows XP"
ws.Range("AV" & x).Value = "End User Support"
Case "HP LaserJet"
ws.Range("AV" & x).Value = "End User Support"
End Select
Next x
'***TO HERE^^^^^
End Sub
Display More
Re: Excel Formula in VBA Code
Can't recall if I did or not. If I did, my apologies about not referencing the cross post. I'm well aware of the rules.
Hello World:
Need advice or an example of how to loop through a range of cells to execute the below Select Case Statement for Each occuring case.
Example: If the value of "Windows 7 Enterprise 64 bit Edition Service Pack 1" occurs in any of the cells in Range R2, then each cell in the correspondeing cell location in Range AV2 should enter a value that reads "End User Support" and then so on for each successive Case. Let me know if I'm not clear on this please!
Sub EndUserSupport()
Select Case Range("R2").Value
Case "Windows 7 Enterprise 64 bit Edition Service Pack 1"
Range("AV2).Value = "End User Support"
Case "Windows XP"
Range("AV2").Value = "End User Support"
Case "HP LaserJet"
Range("AV2").Value = "End User Support"
End Select
End Sub
Display More
Please and Thank you
Re: Excel Formula in VBA Code
This has been solved. It was the order in which the formula was being exeuted that caused the problem. Thank you Carim for your assistance!
Re: Excel Formula in VBA Code
Didn't help. Same error code 104. Changed the code to read as:
'Set Priority Level
.Range("AI2:AI" & lastRow).Formula = _
"=IF(AND(OR(Scan_Type=""External""),AND(Exploitability<>""Unproven"",Exploitability<>"""")),1," & _
"IF(AND(OR(Scan_Type=""Internal"",Scan_Type=""DMZ""),AND(Exploitability<>""Unproven"",Exploitability<>"""")),2," & _
"IF(AND(OR(Scan_Type=""External""),AND(Exploitability=""Unproven"")),3," & _
"IF(AND(OR(Scan_Type=""Internal"",Scan_Type=""DMZ""),AND(Exploitability=""Unproven"")),4,""??""))))"
Baffled....
Hello World,
Trying to get the formula below (where it says PROBLEM AREA below) to calculate but keep getting the "Application defined or Object Defined" error message and can't seem to solve it. What am I missing here?
Option Explicit
Dim lastRow As Long
'Set's up the Archer Export for formatting, column insertion and MS Access append.
Sub ArcherNamedRange()
'Rename the sheet
ActiveSheet.Name = "RawData"
'Insert Column Names
With Sheets("RawData")
Cells(1, Range("A1").End(xlToRight).Column + 1).Value = "VP"
Cells(1, Range("A1").End(xlToRight).Column + 1).Value = "Overdue"
Cells(1, Range("A1").End(xlToRight).Column + 1).Value = "Priority"
Cells(1, Range("A1").End(xlToRight).Column + 1).Value = "Export Date"
'Create Named Range
Range("A1").Select
Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
Selection.CreateNames Top:=True, Left:=False, Bottom:=False, Right:= _
False
Range("A1").Select
'PROBLEM AREA
.Range("AI2:AI" & lastRow).Formula = _
"=IF(AND(OR(Scan_Type=""External""),AND(Exploitability<>""Unproven"",Exploitability<>"")),1," _
& "IF(AND(OR(Scan_Type=""Internal"",Scan_Type=""DMZ""),AND(Exploitability<>""Unproven"",Exploitability<>"""")),2," _
& "IF(AND(OR(Scan_Type=""External""),AND(Exploitability=""Unproven"")),3," _
& "IF(AND(OR(Scan_Type=""Internal"",Scan_Type=""DMZ""),AND(Exploitability=""Unproven"")),4,""??""))))"
'Set Export Date
lastRow = .Cells(.Rows.Count, "A").End(xlUp).Row
.Range("AJ2:AJ" & lastRow).Formula = _
"=today()"
'Set Overdue Date
.Range("AH2:AH" & lastRow).Formula = _
"=IF(Due_Date<Export_Date,""Yes"",""No"")"
'Set VP Name
'Convert all formulas to text
'Adjust Columns
Cells.ColumnWidth = 30
End With
End Sub
Display More
Re: Referencing Label Names in VBA formula
This has been solved. It was a very simple fix wherein instead of using the column/row reference I simply needed to add the column name as listed in the range itself.
Thanks!
Hello World,
I'm faced with trying to reference a column named range in my VBA code. The range was defined in the Name Manager via VBA code first which assigned a label name for each column header too. In the below code (between the ****** lines below) I'm trying to switch from column and row references (R1C1) to the named column range in my formula in order to keep the formula in tact in the event additional columns are added to my data set.
See below:
Option Explicit
Dim lastRow As Long
Sub ArcherFileSetUp()
'Set's up the Archer Export for formatting and MS Access append.
'Rename the sheet
ActiveSheet.Name = "RawData"
'Insert Column Names
With Sheets("RawData")
Range("AG1") = "VP"
Range("AH1") = "Overdue"
Range("AI1") = "Priority"
Range("AJ1") = "Export Date"
'Create Named Range
Range("A1").Select
Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
Application.Goto Reference:="ARCHER"
'***********************************
'Set Export Date
lastRow = .Cells(.Rows.Count, "A").End(xlUp).Row
.Range("AJ2:AJ" & lastRow).Formula = _
"=today()"
'Set Overdue Date
.Range("AH2:AH" & lastRow).Formula = _
"=IF(M2<AJ2,""Yes"",""No"")"
[COLOR=#FF0000] [/COLOR]
'***********************************
'Adjust Columns
Cells.ColumnWidth = 30
End With
End Sub
Display More
Any guidance is appreciated!
Re: Worksheet Loop
I friggen love this forum. My code actually works pretty fast (not a lot of worksheets), but I do appreciate the quick lesson. I'll give this a shot tomorrow.
Re: Worksheet Loop
Fixed it. Thank you for anyone who took the time to review my post. Needed to activate each sheet on the loop.
The new code is:
Sub ACCESS_OCIInventorySetup()
'Copy over unclean part number into new column range
For Each ws In ActiveWorkbook.Worksheets
ws.Activate
Range("J1").Value = "Clean Part No"
For i = 2 To Cells(Rows.Count, "C").End(xlUp).Row
Cells(i, "J") = Cells(i, "C").Value
Next i
'Substitute all special characters and spaces and replace with ""
Intersect(Columns("J"), ActiveSheet.UsedRange).NumberFormat = "@"
For Each v In Array(" ", ".", "#", "-", "/", "~*", "(", ")", "BAV", "OCI", "ATT", "\", "LVN", "SDC")
Columns("J").Replace v, "", xlPart
Next v
Next ws
End Sub
Display More
Can't figure out how to get the worksheet loop to advance to the next sheet. The way code is written currently loops the procedure on the same worksheet. What am I missing here?
Sub ACCESS_OCIInventorySetup()
'Copy over unclean part number into new column range
Sheetcount = ActiveWorkbook.Worksheets.Count
For S = 1 To Sheetcount
Range("J1").Value = "Clean Part No"
For i = 2 To Cells(Rows.Count, "C").End(xlUp).Row
Cells(i, "J") = Cells(i, "C").Value
Next i
'Substitute all special characters and spaces and replace with ""
Intersect(Columns("J"), ActiveSheet.UsedRange).NumberFormat = "@"
For Each v In Array(" ", ".", "#", "-", "/", "~*", "(", ")", "BAV", "OCI", "ATT", "\", "LVN", "SDC")
Columns("J").Replace v, "", xlPart
Next v
Next S
End Sub
Display More
Re: Loop Userform and record label captions and text box entries
Grimes, thanks for the feedback, however incrementing the control index at +7 (which is now corrected from +9 as stated in the previous code) will add 7 to 12 putting my next labels control number at 19 for the next loop. Control 19 is the first label caption on the next row to loop through. Here's the revised code incrementing the controlindex +7 for the next loop:
With MultiPage1.Page1
ControlIndex = 12
For x = 1 To 42 'X is the number of TextBox Controls
iRow = ws.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
'Iterate through textboxes to check for null values. If null, then skip...
If Me.Controls("Textbox" & x).Value > "" Then
ws.Cells(iRow, 1).Value = MultiPage1.Page1.Caption 'Project Information
ws.Cells(iRow, 2).Value = Me.Controls("Label" & ControlIndex).Caption
ws.Cells(iRow, 3).Value = Me.Controls("Label" & ControlIndex + 1).Caption
ws.Cells(iRow, 4).Value = Me.Controls("Label" & ControlIndex + 2).Caption
ws.Cells(iRow, 5).Value = Me.Controls("Label" & ControlIndex + 3).Caption
ws.Cells(iRow, 6).Value = Me.Controls("Label" & ControlIndex + 4).Caption
ws.Cells(iRow, 7).Value = Me.Controls("Label" & ControlIndex + 5).Caption
ws.Cells(iRow, 8).Value = Me.Controls("Label" & ControlIndex + 6).Caption
ws.Cells(iRow, 9).Value = Label703.Caption 'User ID
ws.Cells(iRow, 10).Value = Label704.Caption ' Date Submitted
ws.Cells(iRow, 11).Value = Me.Controls("TextBox" & x).Value
[COLOR=#ff0000]ws.Cells(iRow, 12).Value = Me.Controls("TextBox" & x).Value[/COLOR]
ControlIndex = ControlIndex + 7
End If
Next x
End With
Display More
Everything goes well until I get to the 2nd textbox. When the sub procedure is ran to record the line items where only the first textbox has a value, the values returned to the worksheet looks like this (as it should):
[TABLE="width: 2130"]
[TABLE="width: 2295"]
Project ID
[/td]Order No.
[/td]Item No.
[/td]Subs
[/td]Line No.
[/td]Description
[/td]Qty
[/td]Item Status
[/td]Submitted By
[/td]Date Submitted
[/td]Re-Order Qty
CLV1424 - MRLOS023917 - LTE 2C-NSB-CX
[/td]801214101
[/td]CEQ.13922
[/td]No Subs
[/td]1.1
[/td]Ericsson,RPM2530292/5000,,,,CPRI cascade cable for RRUS,02/11/12,5m,,
[/td]3
[/td]Awaiting Shipping
[/td]tay70662
[/td]Wednesday, Feb, 10, 2016
[/td]1
[/td]CLV1424 - MRLOS023917 - LTE 2C-NSB-CX
[/td]801214101
[/td]CEQ.13681
[/td]No Subs
[/td]2.1
[/td]Ericsson,UCRRUS12B2-48,,,,RRUS12 B2 1900; 5MHz BW,,2x60W,-48V,,
[/td]3
[/td]Awaiting Shipping
[/td]tay70662
[/td]Wednesday, Feb, 10, 2016
[/td]1
[/td]CLV1424 - MRLOS023917 - LTE 2C-NSB-CX
[/td]801214101
[/td]CEQ.13677
[/td]No Subs
[/td]3.1
[/td]Ericsson,UCRRUSA2B2-48,,,,RRUS A2 B2 1900; 5MHz BW, ,-48V,,,
[/td]3
[/td]Awaiting Shipping
[/td]tay70662
[/td]Wednesday, Feb, 10, 2016
[/td]1
[/td]CLV1424 - MRLOS023917 - LTE 2C-NSB-CX
[/td]801214101
[/td]CEQ.13853
[/td]No Subs
[/td]4.1
[/td]Ericsson,RPM5132350/15000,,,,Signal cable RRUS12 external,alarm,,,
[/td]3
[/td]Awaiting Shipping
[/td]tay70662
[/td]Wednesday, Feb, 10, 2016
[/td]1
[/td]
[/TABLE]
If I place an entry in the second textbox, it goes haywire:
[TABLE="width: 2295"]
Project ID
[/td]Order No.
[/td]Item No.
[/td]Subs
[/td]Line No.
[/td]Description
[/td]Qty
[/td]Item Status
[/td]Submitted By
[/td]Date Submitted
[/td]Re-Order Qty
[/td]Order Comments
[/td]CLV1424 - MRLOS023917 - LTE 2C-NSB-CX
[/td]801214101
[/td]CEQ.13922
[/td]No Subs
[/td]1.1
[/td]Ericsson,RPM2530292/5000,,,,CPRI cascade cable for RRUS,02/11/12,5m,,
[/td]3
[/td]Awaiting Shipping
[/td]tay70662
[/td]Wednesday, Feb, 10, 2016
[/td]1
[/td]1
[/td]CLV1424 - MRLOS023917 - LTE 2C-NSB-CX
[/td]801214101
[/td]CEQ.13681
[/td]No Subs
[/td]2.1
[/td]Ericsson,UCRRUS12B2-48,,,,RRUS12 B2 1900; 5MHz BW,,2x60W,-48V,,
[/td]3
[/td]Awaiting Shipping
[/td]tay70662
[/td]Wednesday, Feb, 10, 2016
[/td]test1
[/td]test1
[/td]CLV1424 - MRLOS023917 - LTE 2C-NSB-CX
[/td]801214101
[/td]CEQ.13677
[/td]No Subs
[/td]3.1
[/td]Ericsson,UCRRUSA2B2-48,,,,RRUS A2 B2 1900; 5MHz BW, ,-48V,,,
[/td]3
[/td]Awaiting Shipping
[/td]tay70662
[/td]Wednesday, Feb, 10, 2016
[/td]2
[/td]2
[/td]CLV1424 - MRLOS023917 - LTE 2C-NSB-CX
[/td]801214101
[/td]CEQ.13853
[/td]No Subs
[/td]4.1
[/td]Ericsson,RPM5132350/15000,,,,Signal cable RRUS12 external,alarm,,,
[/td]3
[/td]Awaiting Shipping
[/td]tay70662
[/td]Wednesday, Feb, 10, 2016
[/td]test 2
[/td]test 2
[/td]CLV1424 - MRLOS023917 - LTE 2C-NSB-CX
[/td]tay70662
[/td]Wednesday, Feb, 10, 2016
[/td]3
[/td]3
[/td]CLV1424 - MRLOS023917 - LTE 2C-NSB-CX
[/td]tay70662
[/td]Wednesday, Feb, 10, 2016
[/td]test 3
[/td]test 3
[/td]CLV1424 - MRLOS023917 - LTE 2C-NSB-CX
[/td]tay70662
[/td]Wednesday, Feb, 10, 2016
[/td]4
[/td]4
[/td]CLV1424 - MRLOS023917 - LTE 2C-NSB-CX
[/td]tay70662
[/td]Wednesday, Feb, 10, 2016
[/td]test 4
[/td]test 4
[/td]
[/TABLE]
This is a lot for a free forum. I'll understand if this goes unanswered.
I've tried everything i know of to make this work with no success. Feel free to reply to point out where I'm not thinking correctly.
Thanks for the support.
[/TABLE]