Selasa, 30 Juni 2020

Re: [MSAccessProfessionals] Not stripping the "AND"

I was stepping through the code and it was not showing me my error. But I did get it working. It was a the record source of the report. I changed it from the name of a query to a true SELECT statement and it started working. Not sure why but OK. Thank you for everyone input.


With Warm Regards,
 
Arthur D. Lorenzini
IT System Manager
Cheyenne River Housing Authority
Wk.(605)964-4265  Ext. 130
Fax (605)964-1070

"Valar Dohaeris"






On Monday, June 29, 2020, 04:13:59 PM CDT, Duane Hookom <duanehookom@hotmail.com> wrote:


Hi Art,
Have you added a breakpoint to your code and stepped through it line by line?

As you press F8 you should be able to see what's happening so it can be fixed.
The code will stop running and allow you to hover the mouse over a variable to see its value. You can press [F8] to step through the code a line at a time.
www.tek-tips.com
BW: RELTYPE is not even in your supplied code. I'm not sure where it is coming from.

Duane


From: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io> on behalf of Art Lorenzini via groups.io <dbalorenzini=yahoo.com@groups.io>
Sent: Monday, June 29, 2020 3:34 PM
To: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io>
Subject: [MSAccessProfessionals] Not stripping the "AND"
 
I have the following code that I found and am trying to adapt. It geared to filter a form by allowing the user to select criteria from several combo boxes.

Private Sub cmdApplyFilter_Click()
     'Purpose:   Build up the criteria string form the non-blank search boxes, and apply to the form's Filter.
    'Notes:     1. We tack " AND " on the end of each condition so you can easily add more search boxes; _
                        we remove the trailing " AND " at the end.
    '           2. The date range works like this: _
                        Both dates      = only dates between (both inclusive. _
                        Start date only = all dates from this one onwards; _
                        End date only   = all dates up to (and including this one).
    
    Dim strWhere As String                  'The criteria string.
    Dim lngLen As Long                      'Length of the criteria string appended to
    Const conJetDate = "\#mm\/dd\/yyyy\#"   'The format expected for dates in a JET query string.
    Dim strDisplayString As String
    '**********************************************************************************
    'Look at each search box, and build up the criteria string from the non-blank ones.
    '**********************************************************************************
    
    'Text field example. Use quotes around the value in the string
  
    If Not IsNull(Me.txtFilterProjectNumber) Then
        strWhere = strWhere & "([Project Number] Like ""*" & Me.txtFilterProjectNumber & "*"") AND "
    End If
    
    If Not IsNull(Me.txtFilterRoomCount) Then
        strWhere = strWhere & "([BedroomCount] Like ""*" & Me.txtFilterRoomCount & "*"") AND "
    End If
    
    If Not IsNull(Me.txtFilterCommunityName) Then
        strWhere = strWhere & "([CommunityName] Like ""*" & Me.txtFilterCommunityName & "*"") AND "
    End If
    
    
    If Not IsNull(Me.txtFilterUnitCode) Then
        strWhere = strWhere & "([UnitCode] Like ""*" & Me.txtFilterUnitCode & "*"") AND "
    End If
    
    If Not IsNull(Me.txtFilterUnitNumber) Then
        strWhere = strWhere & "([UnitNumber] Like ""*" & Me.txtFilterUnitNumber & "*"") AND "
    End If
 
       'Number field example. Do not add the extra quotes.
    If Not IsNull(Me.cboFilterUnitStatus) Then
        'strWhere = strWhere & "([UnitStatus] = " & Me.cboFilterUnitStatus & ") AND "
        strWhere = strWhere & "([UnitStatus] Like ""*" & Me.cboFilterUnitStatus & "*"") AND "
    End If
    
    'Number field example. Do not add the extra quotes.
    If Not IsNull(Me.cboFilterHousingType) Then
        'strWhere = strWhere & "([UnitStatus] = " & Me.cboFilterUnitStatus & ") AND "
        strWhere = strWhere & "([UnitHousingType] Like ""*" & Me.cboFilterHousingType & "*"") AND "
    End If
    
       'Yes/No field and combo example. If combo is blank or contains "ALL", we do nothing.
    If Me.chkFilterHandicapped = -1 Then
        strWhere = strWhere & "([HandicappedFlag] = True) AND "
    ElseIf Me.chkFilterHandicapped = 0 Then
        strWhere = strWhere & "([HandicappedFlag] = False) AND "
    End If
 
 '***********************************************************************
    'Chop off the trailing " AND ", and use the string as the form's Filter.
    '***********************************************************************
    'See if the string has more than 5 characters (a trailng " AND ") to remove.
    lngLen = Len(strWhere) - 5
    If lngLen <= 0 Then     'Nah: there was nothing in the string.
        MsgBox "No criteria", vbInformation, "Nothing to do."
    Else                    'Yep: there is something there, so remove the " AND " at the end.
        strWhere = Left$(strWhere, lngLen)
        'For debugging, remove the leading quote on the next line. Prints to Immediate Window (Ctrl+G).
        Debug.Print strWhere
        Me.txtCriteria = strWhere
        'Finally, apply the string as the form's Filter.
        Me.Filter = strWhere
        Me.FilterOn = True
    End If
 
End Sub

The problem that I am running into is if its the last selection the code needs to knock off the last "AND" but it is not working. The string comes out looking like this:

([RELTYPE] Like "*HOH*") AND 

Any ideas?

Thank you 
Art Lorenzini
Sioux Falls, SD


Senin, 29 Juni 2020

Re: [MSAccessProfessionals] Not stripping the "AND"

first i noticed "[RELTYPE]" is not on your code.

maybe used a function to strip the "AND":

..
..
    '***********************************************************************
    'Chop off the trailing " AND ", and use the string as the form's Filter.
    '***********************************************************************
    'See if the string has more than 5 characters (a trailng " AND ") to remove.
    lngLen = Len(strWhere)
    If lngLen <= 0 Then     'Nah: there was nothing in the string.
        MsgBox "No criteria", vbInformation, "Nothing to do."
    Else                    'Yep: there is something there, so remove the " AND " at the end.
        '''''''''''
        ' arnelgp
        '
        ' loop until no more " AND " at the end of string
        '
        '''''''''''
        strWhere = chopOffAnd(strWhere)
        
        'For debugging, remove the leading quote on the next line. Prints to Immediate Window (Ctrl+G).
        Debug.Print strWhere
        Me.txtCriteria = strWhere
        'Finally, apply the string as the form's Filter.
        Me.Filter = strWhere
        Me.FilterOn = True
    End If
 
End Sub



'arnelgp
Public Function chopOffAnd(ByVal s As String) As String
    With CreateObject("VBScript.RegExp")
        .Global = True
        .IgnoreCase = True
        .pattern = " AND ?$"
        s = .Replace(s, "")
    End With
    chopOffAnd = s
End Function




--
Arnelito G. Puzon


_._,_._,_

Groups.io Links:

You receive all messages sent to this group.

View/Reply Online (#115662) | Reply To Group | Reply To Sender | Mute This Topic | New Topic

Your Subscription | Contact Group Owner | Unsubscribe [sugeng.panjalu.access@blogger.com]

_._,_._,_

Re: [MSAccessProfessionals] Not stripping the "AND"

Hi Art,
Have you added a breakpoint to your code and stepped through it line by line?

As you press F8 you should be able to see what's happening so it can be fixed.
BW: RELTYPE is not even in your supplied code. I'm not sure where it is coming from.

Duane


From: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io> on behalf of Art Lorenzini via groups.io <dbalorenzini=yahoo.com@groups.io>
Sent: Monday, June 29, 2020 3:34 PM
To: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io>
Subject: [MSAccessProfessionals] Not stripping the "AND"
 
I have the following code that I found and am trying to adapt. It geared to filter a form by allowing the user to select criteria from several combo boxes.

Private Sub cmdApplyFilter_Click()
     'Purpose:   Build up the criteria string form the non-blank search boxes, and apply to the form's Filter.
    'Notes:     1. We tack " AND " on the end of each condition so you can easily add more search boxes; _
                        we remove the trailing " AND " at the end.
    '           2. The date range works like this: _
                        Both dates      = only dates between (both inclusive. _
                        Start date only = all dates from this one onwards; _
                        End date only   = all dates up to (and including this one).
    
    Dim strWhere As String                  'The criteria string.
    Dim lngLen As Long                      'Length of the criteria string appended to
    Const conJetDate = "\#mm\/dd\/yyyy\#"   'The format expected for dates in a JET query string.
    Dim strDisplayString As String
    '**********************************************************************************
    'Look at each search box, and build up the criteria string from the non-blank ones.
    '**********************************************************************************
    
    'Text field example. Use quotes around the value in the string
  
    If Not IsNull(Me.txtFilterProjectNumber) Then
        strWhere = strWhere & "([Project Number] Like ""*" & Me.txtFilterProjectNumber & "*"") AND "
    End If
    
    If Not IsNull(Me.txtFilterRoomCount) Then
        strWhere = strWhere & "([BedroomCount] Like ""*" & Me.txtFilterRoomCount & "*"") AND "
    End If
    
    If Not IsNull(Me.txtFilterCommunityName) Then
        strWhere = strWhere & "([CommunityName] Like ""*" & Me.txtFilterCommunityName & "*"") AND "
    End If
    
    
    If Not IsNull(Me.txtFilterUnitCode) Then
        strWhere = strWhere & "([UnitCode] Like ""*" & Me.txtFilterUnitCode & "*"") AND "
    End If
    
    If Not IsNull(Me.txtFilterUnitNumber) Then
        strWhere = strWhere & "([UnitNumber] Like ""*" & Me.txtFilterUnitNumber & "*"") AND "
    End If
 
       'Number field example. Do not add the extra quotes.
    If Not IsNull(Me.cboFilterUnitStatus) Then
        'strWhere = strWhere & "([UnitStatus] = " & Me.cboFilterUnitStatus & ") AND "
        strWhere = strWhere & "([UnitStatus] Like ""*" & Me.cboFilterUnitStatus & "*"") AND "
    End If
    
    'Number field example. Do not add the extra quotes.
    If Not IsNull(Me.cboFilterHousingType) Then
        'strWhere = strWhere & "([UnitStatus] = " & Me.cboFilterUnitStatus & ") AND "
        strWhere = strWhere & "([UnitHousingType] Like ""*" & Me.cboFilterHousingType & "*"") AND "
    End If
    
       'Yes/No field and combo example. If combo is blank or contains "ALL", we do nothing.
    If Me.chkFilterHandicapped = -1 Then
        strWhere = strWhere & "([HandicappedFlag] = True) AND "
    ElseIf Me.chkFilterHandicapped = 0 Then
        strWhere = strWhere & "([HandicappedFlag] = False) AND "
    End If
 
 '***********************************************************************
    'Chop off the trailing " AND ", and use the string as the form's Filter.
    '***********************************************************************
    'See if the string has more than 5 characters (a trailng " AND ") to remove.
    lngLen = Len(strWhere) - 5
    If lngLen <= 0 Then     'Nah: there was nothing in the string.
        MsgBox "No criteria", vbInformation, "Nothing to do."
    Else                    'Yep: there is something there, so remove the " AND " at the end.
        strWhere = Left$(strWhere, lngLen)
        'For debugging, remove the leading quote on the next line. Prints to Immediate Window (Ctrl+G).
        Debug.Print strWhere
        Me.txtCriteria = strWhere
        'Finally, apply the string as the form's Filter.
        Me.Filter = strWhere
        Me.FilterOn = True
    End If
 
End Sub

The problem that I am running into is if its the last selection the code needs to knock off the last "AND" but it is not working. The string comes out looking like this:

([RELTYPE] Like "*HOH*") AND 

Any ideas?

Thank you 
Art Lorenzini
Sioux Falls, SD


[MSAccessProfessionals] Not stripping the "AND"

I have the following code that I found and am trying to adapt. It geared to filter a form by allowing the user to select criteria from several combo boxes.

Private Sub cmdApplyFilter_Click()
     'Purpose:   Build up the criteria string form the non-blank search boxes, and apply to the form's Filter.
    'Notes:     1. We tack " AND " on the end of each condition so you can easily add more search boxes; _
                        we remove the trailing " AND " at the end.
    '           2. The date range works like this: _
                        Both dates      = only dates between (both inclusive. _
                        Start date only = all dates from this one onwards; _
                        End date only   = all dates up to (and including this one).
    
    Dim strWhere As String                  'The criteria string.
    Dim lngLen As Long                      'Length of the criteria string appended to
    Const conJetDate = "\#mm\/dd\/yyyy\#"   'The format expected for dates in a JET query string.
    Dim strDisplayString As String
    '**********************************************************************************
    'Look at each search box, and build up the criteria string from the non-blank ones.
    '**********************************************************************************
    
    'Text field example. Use quotes around the value in the string
  
    If Not IsNull(Me.txtFilterProjectNumber) Then
        strWhere = strWhere & "([Project Number] Like ""*" & Me.txtFilterProjectNumber & "*"") AND "
    End If
    
    If Not IsNull(Me.txtFilterRoomCount) Then
        strWhere = strWhere & "([BedroomCount] Like ""*" & Me.txtFilterRoomCount & "*"") AND "
    End If
    
    If Not IsNull(Me.txtFilterCommunityName) Then
        strWhere = strWhere & "([CommunityName] Like ""*" & Me.txtFilterCommunityName & "*"") AND "
    End If
    
    
    If Not IsNull(Me.txtFilterUnitCode) Then
        strWhere = strWhere & "([UnitCode] Like ""*" & Me.txtFilterUnitCode & "*"") AND "
    End If
    
    If Not IsNull(Me.txtFilterUnitNumber) Then
        strWhere = strWhere & "([UnitNumber] Like ""*" & Me.txtFilterUnitNumber & "*"") AND "
    End If
 
       'Number field example. Do not add the extra quotes.
    If Not IsNull(Me.cboFilterUnitStatus) Then
        'strWhere = strWhere & "([UnitStatus] = " & Me.cboFilterUnitStatus & ") AND "
        strWhere = strWhere & "([UnitStatus] Like ""*" & Me.cboFilterUnitStatus & "*"") AND "
    End If
    
    'Number field example. Do not add the extra quotes.
    If Not IsNull(Me.cboFilterHousingType) Then
        'strWhere = strWhere & "([UnitStatus] = " & Me.cboFilterUnitStatus & ") AND "
        strWhere = strWhere & "([UnitHousingType] Like ""*" & Me.cboFilterHousingType & "*"") AND "
    End If
    
       'Yes/No field and combo example. If combo is blank or contains "ALL", we do nothing.
    If Me.chkFilterHandicapped = -1 Then
        strWhere = strWhere & "([HandicappedFlag] = True) AND "
    ElseIf Me.chkFilterHandicapped = 0 Then
        strWhere = strWhere & "([HandicappedFlag] = False) AND "
    End If
 
 '***********************************************************************
    'Chop off the trailing " AND ", and use the string as the form's Filter.
    '***********************************************************************
    'See if the string has more than 5 characters (a trailng " AND ") to remove.
    lngLen = Len(strWhere) - 5
    If lngLen <= 0 Then     'Nah: there was nothing in the string.
        MsgBox "No criteria", vbInformation, "Nothing to do."
    Else                    'Yep: there is something there, so remove the " AND " at the end.
        strWhere = Left$(strWhere, lngLen)
        'For debugging, remove the leading quote on the next line. Prints to Immediate Window (Ctrl+G).
        Debug.Print strWhere
        Me.txtCriteria = strWhere
        'Finally, apply the string as the form's Filter.
        Me.Filter = strWhere
        Me.FilterOn = True
    End If
 
End Sub

The problem that I am running into is if its the last selection the code needs to knock off the last "AND" but it is not working. The string comes out looking like this:

([RELTYPE] Like "*HOH*") AND 

Any ideas?

Thank you 
Art Lorenzini
Sioux Falls, SD


_._,_._,_

Groups.io Links:

You receive all messages sent to this group.

View/Reply Online (#115660) | Reply To Group | Reply To Sender | Mute This Topic | New Topic

Your Subscription | Contact Group Owner | Unsubscribe [sugeng.panjalu.access@blogger.com]

_._,_._,_

Jumat, 26 Juni 2020

Promo Mitsubishi Fuso Fighter

Kami dari PT. Bumen Redja Abadi dealer resmi kendaraan Mitsubishi ingin mengenalkan kendaraan Medium Duty Truck terbaru kami yaitu Fuso Fighter. Fuso Fighter memiliki desain kabin yang lebih keren, rigid dan modern dibandingkan Fuso model sebelumnya. Truk ini TELAH TERUJI lebih irit dibandingkan kompetitor karena volume silindernya paling kecil di kelasnya (7545 cc) namun menghasilkan tenaga yang besar (240 - 270 PS) yang tentunya akan berdampak terhadap efisiensi bahan bakar.

 

Selain lebih irit, Fuso Fighter punya beberapa keunggulan yang tidak dimiliki oleh kompetitor, diantaranya:

 

1. Kapasitas muatan dan daya tanjak sesuai dengan ekspektasi konsumen.

   · Tipe 4x2 (FM 65 Hi Gear), telah diuji mampu mencapai kapasitas muatan 22 ton di tanjakan pancong (Sumatera).

   ·  Tipe 6x2 (FN 61M), telah diuji mampu mencapai kapasitas muatan 41 ton di tanjakan pancong.

    ·  Tipe 6x4 (FN 62 HD), telah diuji mampu mencapai kapasitas muatan 41 ton di tanjakan pancong.

 

2. Fuso Fighter telah dilengkapi dengan spesifikasi terbaik dan kuat serta cocok untuk market di Indonesia.

   ·  Kekuatan Wheel Disc 1,5 kali lebih kuat dibandingkan kompetitor.

   ·  Spec filter terbaik di kelasnya karena dilengkapi Triple Filter dan Triple Separator, untuk mendukung bahan bakar B30. Interval penggantian Triple Filter dan Triple Separator paling lama di kelasnya yaitu tiap 20.000 km. Interval penggantian Oli juga lebih lama dibandingkan kompetitor yang membuat biaya perawatan semakin murah (spek oli harus sesuai petunjuk di buku service).

 Ã˜  Oli Mesin, ganti tiap 10.000 km atau 6 bulan.

 Ã˜  Oli Transmisi, ganti tiap 20.000 km atau 12 bulan.

 Ã˜  Oli gardan, ganti tiap 20.000 km atau 12 bulan.

 

3. Fuso Fighter lebih baik di semua faktor kenyamanan (kabin, operasional, feeling pengendaraan) dibandingkan dengan para kompetitornya.

   ·  Dilengkapi Air Suspension Seat untuk kenyamanan berkendara.

   ·  Panel Dashboard mudah dijangkau (cockpit model).

   ·  Cabin tilting yang ringan dan sudut bukaan lebar (67 derajat).

   ·  Lampu kabin premium untuk penerangan (pada model 6x2 dan 6x4).

   ·  Ruang kabin yang luas.

   ·  Tersedia tempat penyimpanan di bawah kursi penumpang.

 

4. Fuso Fighter telah dilengkapi Telematic System Runner yaitu teknologi yang dapat melakukan monitoring data kendaraan secara lengkap melalui WEB BASE SYSTEM / APLIKASI SMARTPHONE. Anda bisa memonitor hal-hal berikut ini:

   ·  Pengaturan job order

   ·  Jarak tempuh

   ·  Gaya mengemudi

   ·  Jadwal perawatan

   ·  Konsumsi bahan bakar

 

5. Didukung oleh 260 jaringan dealer dan bengkel resmi, 16 truck center, 19 parts depo, 107 mobile workshop service, dan ± 4.900 outlet spare parts. Di truck center yang kami miliki, memberi pelayanan bengkel 24 jam nonstop sepanjang 365 hari yang selalu siap memberikan perawatan serta perbaikan kendaraan di 16 area di Indonesia. Fasilitas penunjang truck center kami diantaranya :

   ·  Ruang istirahat nyaman

   ·  Shower room

   ·  Truck lift

   ·  Wheel balancer

 

Konsultasikan kebutuhan kendaraan anda dengan fasilitas pembiayaan yang kami miliki. Tersedia beragam skema pembiayaan menarik, mulai dari:

   ·  DP 0% (minimal 10 unit dan wajib punya laporan keuangan 2 tahun terakhir yang sudah diaudit).

   ·  DP 5% (maksimal tenor 4 tahun).

   ·  Bunga 0% (DP minimal 40%, tenor 1 tahun).

 

Info lebih lanjut silakan hubungi  Yonan via telp/WA 0852.1520.0246

 

PRICELIST KENDARAAN NIAGA PER 1 JUNI 2020

(BBN JABODETABEK)

TYPE

OTR

CC

PS

MAX GVW (KG)

PICK UP (DIESEL)

 

 

 

 

L 300 STANDARD

186.000.000

2.500

72

2.540

L 300 FLAT DECK

186.500.000

2.500

72

2.540

L 300 BBN BOX

187.500.000

2.500

72

2.540

PICK UP SUV (DIESEL)

 

 

 

 

TRITON SINGLE CABIN GLX 4X2

261.000.000

2.477

136

2.760

TRITON SINGLE CABIN HDX 4X4 M/T

343.500.000

2.477

110

2.760

TRITON DOUBLE CABIN ULTIMATE 4X4 A/T

490.000.000

2.477

178

2.870

TRITON DOUBLE CABIN EXCEED 4X4 A/T

460.000.000

2.477

178

2.870

TRITON DOUBLE CABIN EXCEED 4X4 M/T

450.000.000

2.477

178

2.870

TRITON DOUBLE CABIN ATHLETE 4X4 M/T

470.000.000

2.477

178

2.920

TRITON DOUBLE CABIN ATHLETE 4X4 A/T

480.000.000

2.477

178

2.950

TRITON DOUBLE CABIN GLS 4X4 M/T

428.000.000

2.477

136

2.850

TRITON DOUBLE CABIN HDX 4X4 M/T

374.500.000

2.477

110

2.850

KENDARAAN NIAGA RINGAN (COLT DIESEL)

 

 

 

 

FE 71 BBN BAK (4 BAN)

294.500.000

3.908

110

5.150

FE 71 BBN BOX (4 BAN)

296.500.000

3.908

110

5.150

FE 71 PS BBN BAK (4 BAN)

299.000.000

3.908

110

5.150

FE 71 PS BBN BOX (4 BAN)

302.000.000

3.908

110

5.150

FE 71 LONG BBN BAK (4 BAN)

306.500.000

3.908

110

5.200

FE 71 LONG BBN BOX (4 BAN)

307.000.000

3.908

110

5.200

FE 71 CHASIS BUS (4 BAN)

280.000.000

3.908

110

5.150

FE 71 LONG CHASIS BUS (4 BAN)

294.500.000

3.908

110

5.200

FE 71 LONG ESPASIO (MOBIL TRAVEL)

500.000.000

3.908

110

5.200

FE 73 BBN BAK (6 BAN)

331.000.000

3.908

110

7.000

FE 73 BBN BOX (6 BAN)

334.000.000

3.908

110

7.000

FE 73 HD BBN BAK (6 BAN)

341.000.000

3.908

110

7.000

FE 73 HD BBN DUMP (6 BAN)

349.000.000

3.908

110

7.000

FE 74 S  BBN BAK (6 BAN)

344.000.000

3.908

125

7.500

FE 74 S  BBN BOX (6 BAN)

349.000.000

3.908

125

7.500

FE 74 HD  BBN BAK (6 BAN)

353.000.000

3.908

125

7.500

FE 74 HD  BBN BOX (6 BAN)

357.000.000

3.908

125

7.500

FE 74 HD  BBN DUMP (6 BAN)

359.000.000

3.908

125

7.500

FE 74 LONG BBN BAK (6 BAN)

360.000.000

3.908

125

7.500

FE 74 LONG BBN BOX (6 BAN)

363.000.000

3.908

125

7.500

FE 74 HD  BBN DUMP (6 BAN)

358.000.000

3.908

125

7.500

FE 74 HD  BBN TANGKI (6 BAN)

359.000.000

3.908

125

7.500

FE SHD BBN BAK (6 BAN)

358.000.000

3.908

136

7.500

FE SHD BBN BOX (6 BAN)

366.000.000

3.908

136

7.500

FE SHD BBN DUMP (6 BAN)

366.000.000

3.908

136

7.500

FE SHDX HI GEAR 6,6 BBN DUMP (6 BAN)

373.000.000

3.908

136

7.500

FE SHDX HI GEAR 6,6 BBN BOX (6 BAN)

373.000.000

3.908

136

7.500

FE SHDX HI GEAR 6,6 BBN TANGKI (6 BAN)

373.000.000

3.908

136

7.500

FE 84 HDL BBN BAK (6 BAN)

373.500.000

3.908

136

8.000

FE 84 HDL BBN BOX (6 BAN)

379.500.000

3.908

136

8.000

FE 83 CHASIS BUS (6 BAN)

341.500.000

3.908

136

7.000

FE 84 CHASIS BUS (6 BAN)

361.000.000

3.908

136

8.000

KENDARAAN NIAGA BERAT (FUSO)

 

 

 

 

FM 517 HS BBN TANGKI

631.500.000

7.545

220

14.030

FM 517 HS BBN BAK (6 BAN)

622.000.000

7.545

220

14.030

FM 517 HS BBN BOX (6 BAN)

625.000.000

7.545

220

14.030

FM 517 HL BBN BAK (6 BAN)

652.000.000

7.545

220

14.030

FM 517 HL BBN BOX (6 BAN)

659.500.000

7.545

220

14.030

FM 517 HL LONG BBN BAK (6 BAN)

664.500.000

7.545

220

14.030

FM 517 HL LONG BBN BOX (6 BAN)

671.500.000

7.545

220

14.030

FN 517 ML2 BBN BAK (10 BAN)

763.500.000

7.545

220

21.000

FN 517 ML2 BBN BOX (10 BAN)

769.000.000

7.545

220

21.000

FN 517 ML2 SUPER LONG BBN BAK (10 BAN)

772.000.000

7.545

220

21.000

FN 517 ML2 SUPER LONG BBN BOX (10 BAN)

779.000.000

7.545

220

21.000

FN 527 MS BBN BAK (10 BAN)

880.500.000

7.545

220

24.800

FN 527 ML BBN BAK (10 BAN)

894.500.000

7.545

220

24.800

KENDARAAN NIAGA BERAT (FUSO FIGHTER)

FM 65 FS 4X2

696.500.000

7.545

240

16.000

FM 65 FS 4X2 HIGH GEAR  

701.500.000

7.545

240

16.000

FM 65 FM 4X2

706.500.000

7.545

240

16.000

FM 65 FM 4X2 HI GEAR

711.500.000

7.545

240

16.000

FM 65 FL 4X2

716.500.000

7.545

240

16.000

FM 65 FL 4X2 HIGH GEAR

725.500.000

7.545

240

16.000

FM 65 FSL 4X2

731.500.000

7.545

240

16.000

FM 65 FSL HI GEAR 4X2

736.500.000

7.545

240

16.000

FN 61 FS 6X2

829.500.000

7.545

240

26.000

FN 61 FL 6X2

838.500.000

7.545

240

26.000

FN 61 FM HD 6X2

841.500.000

7.545

270

26.000

FN 62F HD 6X4

939.500.000

7.545

270

26.000

FN 62FL HD 6X4

955.500.000

7.545

270

26.000

FN 62F 6X4 TRACTOR HEAD

1.045.000.000

7.545

270

36.000

 

 

 

 

 

 

 

 

PRICELIST MOBIL PENUMPANG PER 1 JUNI 2020

(BBN JABODETABEK)

                                          TYPE

OTR

CC

PS

PAJERO SPORT DAKAR 4X4 PUTIH A/T

685.000.000

2,442

181

PAJERO SPORT DAKAR 4X4 A/T

682.000.000

2,442

181

PAJERO DAKAR ULTIMATE PUTIH 4X2 A/T

579.000.000

2,477

181

PAJERO DAKAR ULTIMATE 4X2 A/T

576.000.000

2,477

181

PAJERO SPORT DAKAR 4X2 PUTIH A/T

535.000.000

2,442

181

PAJERO SPORT DAKAR 4X2 A/T

532.000.000

2,442

181

PAJERO GLX 4X4 M/T

531.000.000

2,477

136

PAJERO EXCEED A/T

489.000.000

2,477

136

PAJERO EXCEED M/T

474.000.000

2,477

136

OUTLANDER PHEV (PLUG-IN HYBRID ELECTRIC VEHICLE)

1.289.000.000

2,399

166

ECLIPSE CROSS AT 2WD BLACK

478.000.000

1499

150

ECLIPSE CROSS AT 2WD WHITE

481.000.000

1499

150

ECLIPSE CROSS AT 2WD RED DIAMOND

483.000.000

1499

150

XPANDER CROSS LEATHER SEAT A/T

292.700.000

1499

104

XPANDER CROSS FABRIC SEAT A/T

282.700.000

1499

104

XPANDER CROSS FABRIC SEAT M/T

272.700.000

1499

104

XPANDER ULTIMATE A/T

272.100.000

1499

104

XPANDER SPORT A/T

262.400.000

1499

104

XPANDER SPORT M/T

252.400.000

1499

104

XPANDER EXCEED A/T

250.200.000

1499

104

XPANDER EXCEED M/T

239.800.000

1499

104

XPANDER GLS A/T

243.800.000

1499

104

XPANDER GLS M/T

232.800.000

1499

104

XPANDER GLX M/T

216.300.000

1499

104

 

 

BONUS:

- Free Service dan Sparepart khusus untuk pembelian Xpander

- Free Service dan Chemical selama 2 tahun atau 40.000 km untuk pembelian Colt Diesel dan Fuso

- Free Kaca Film dan Karpet Dasar untuk semua tipe kendaraan

- Gratis Biaya Tarik Kendaraan dalam kota

- Gratis Biaya Kunjungan Service ditempat

- Gratis Biaya antar jemput kendaraan dalam kota

- Booking service & service di tempat

 

Informasi lebih lanjut silakan hubungi:

Yonan 0852.1520.0246

Email: yonan.mitsubishi@gmail.com

PT. Bumen Redja Abadi – Cabang Latumenten
Jl. Prof. Dr. Latumenten No. 5 Jakarta